Created
January 20, 2023 20:43
-
-
Save thecodeholic/74a749a6af794572027c143221f0ac17 to your computer and use it in GitHub Desktop.
Sample Apache Virtual Host file
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 *:80> | |
ServerName laravelexample.net | |
ServerAdmin [email protected] | |
DocumentRoot /var/www/laravelexample/public | |
<Directory /var/www/laravelexample> | |
AllowOverride All | |
</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