Skip to content

Instantly share code, notes, and snippets.

@akmur
Last active December 30, 2023 04:49
Show Gist options
  • Save akmur/7860eee1cac796baa6d1 to your computer and use it in GitHub Desktop.
Save akmur/7860eee1cac796baa6d1 to your computer and use it in GitHub Desktop.
Virtualhost Example
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /home/alex/Web
<Directory />
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
Allow from all
</Directory>
<Directory /home/alex/Web>
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Require all granted
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment