Skip to content

Instantly share code, notes, and snippets.

@vinniejames
Created April 17, 2017 20:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinniejames/2ccf730fbc09622b4446412f603650ba to your computer and use it in GitHub Desktop.
Save vinniejames/2ccf730fbc09622b4446412f603650ba to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
LoadModule php5_module /opt/circleci/php/5.6.17/libexec/apache2/libphp5.so
DocumentRoot /home/ubuntu/phpwebapp
ServerName local.phpwebapp.dev
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
<Directory /home/ubuntu/phpwebapp>
AllowOverride all
Require all granted
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment