Last active
November 28, 2019 07:20
-
-
Save neatstudio/d68540851c628372c3f3fc0893506a6c to your computer and use it in GitHub Desktop.
laravel-apache.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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