Created
May 31, 2018 08:54
-
-
Save SamsadSajid/31269fe95daf828b47343574c9ed714e to your computer and use it in GitHub Desktop.
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
## laravel_project.conf | |
NameVirtualHost *:8080 | |
Listen 8080 | |
<VirtualHost *:8080> | |
ServerAdmin [email protected] | |
ServerName laravel.dev | |
ServerAlias www.laravel.dev | |
DocumentRoot /home/user/projects/laravel_project/public | |
<Directory /home/user/projects/laravel_project/public/> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
Require all granted | |
</Directory> | |
LogLevel debug | |
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