Skip to content

Instantly share code, notes, and snippets.

@kripul
Last active January 28, 2019 12:02
Show Gist options
  • Save kripul/12f53a811425a4b6f6d72016bb480ee4 to your computer and use it in GitHub Desktop.
Save kripul/12f53a811425a4b6f6d72016bb480ee4 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerAdmin your_email_address
ServerName domain1.net
ServerAlias www.domain1.net
DocumentRoot /var/www/domain1
<Directory />
Options FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/domain1
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
. . .
. . .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment