Skip to content

Instantly share code, notes, and snippets.

@paulredmond
Created September 18, 2017 05:11
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 paulredmond/9d70cfdf098b10ae80dcdf474f55ff7f to your computer and use it in GitHub Desktop.
Save paulredmond/9d70cfdf098b10ae80dcdf474f55ff7f to your computer and use it in GitHub Desktop.
A simple Apache Vhost for Docker + PHP
<VirtualHost *:80>
DocumentRoot /srv/app/public
<Directory "/srv/app/public">
AllowOverride all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment