Skip to content

Instantly share code, notes, and snippets.

@mschirbel
Last active January 26, 2019 04:14
Show Gist options
  • Save mschirbel/1a69584b2ca5796acf4993fc66c0af26 to your computer and use it in GitHub Desktop.
Save mschirbel/1a69584b2ca5796acf4993fc66c0af26 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerAdmin admin@example.com
DocumentRoot /var/www/html/MyProject/public
ServerName www.example-schirbel.com
<Directory /var/www/html/MyProject/public>
Options +FollowSymlinks
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