Skip to content

Instantly share code, notes, and snippets.

@thecodeholic
Created January 20, 2023 20:43
Show Gist options
  • Select an option

  • Save thecodeholic/74a749a6af794572027c143221f0ac17 to your computer and use it in GitHub Desktop.

Select an option

Save thecodeholic/74a749a6af794572027c143221f0ac17 to your computer and use it in GitHub Desktop.

Revisions

  1. thecodeholic created this gist Jan 20, 2023.
    11 changes: 11 additions & 0 deletions apache_vhost.conf
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    <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>