Skip to content

Instantly share code, notes, and snippets.

@neatstudio
Last active November 28, 2019 07:20
Show Gist options
  • Save neatstudio/d68540851c628372c3f3fc0893506a6c to your computer and use it in GitHub Desktop.
Save neatstudio/d68540851c628372c3f3fc0893506a6c to your computer and use it in GitHub Desktop.
laravel-apache.conf
<VirtualHost *:9999>
ServerAdmin webmaster@{website}
ServerName {website}
DocumentRoot /server/wwwroot/{website}/public
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /server/wwwroot/{website}/public/>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/{website}.error.log
LogLevel warn
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment