Created
August 10, 2018 19:18
-
-
Save sumanta-ghosh/200f0e624efa61720716e02ffe972a5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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