Skip to content

Instantly share code, notes, and snippets.

@sumanta-ghosh
Created August 10, 2018 19:18
Show Gist options
  • Save sumanta-ghosh/200f0e624efa61720716e02ffe972a5f to your computer and use it in GitHub Desktop.
Save sumanta-ghosh/200f0e624efa61720716e02ffe972a5f to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerAdmin webmaster@[WWW]
ServerName [WWW]
ServerAlias www.[WWW]
DocumentRoot /var/www/html/[WWW]
ErrorLog ${APACHE_LOG_DIR}/[WWW].com.error.log
CustomLog ${APACHE_LOG_DIR}/[WWW].access.log combined
<Directory /var/www/html/[WWW]>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment