Last active
April 26, 2018 13:46
-
-
Save butlerx/b6ca0e88b8a5d5a5292db07b3b9c1a88 to your computer and use it in GitHub Desktop.
apache
This file contains 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 [email protected] | |
ServerName test.com | |
ServerAlias www.test.com | |
DocumentRoot /var/www/test.com/public_html | |
FallbackResource index.html | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
AddType text/html .shtml | |
AddHandler server-parsed .shtml | |
AddHandler server-parsed .html | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment