Skip to content

Instantly share code, notes, and snippets.

@thecodeholic
Created January 20, 2023 20:43
Show Gist options
  • Save thecodeholic/74a749a6af794572027c143221f0ac17 to your computer and use it in GitHub Desktop.
Save thecodeholic/74a749a6af794572027c143221f0ac17 to your computer and use it in GitHub Desktop.
Sample Apache Virtual Host file
<VirtualHost *:80>
ServerName laravelexample.net
ServerAdmin webmaster@thedomain.com
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