Skip to content

Instantly share code, notes, and snippets.

@LuisRBarreras
Created December 27, 2013 21:45
Show Gist options
  • Save LuisRBarreras/8153072 to your computer and use it in GitHub Desktop.
Save LuisRBarreras/8153072 to your computer and use it in GitHub Desktop.
Apache2 virtual host
<VirtualHost *:80>
ServerName local.test-nearsoft
DocumentRoot /home/lbarreras/work/documentationTest/nearsoft-php-seleniumclient/web
DirectoryIndex index.php
ErrorLog /var/log/apache2/test-php-selenium-documentation-error.log
CustomLog /var/log/apache2/test-php-selenium-documentationaccess.log combined
<Directory "/home/lbarreras/work/documentationTest/nearsoft-php-seleniumclient">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment