Created
May 22, 2012 13:30
-
-
Save dragoonis/2769064 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
NameVirtualHost *:80 | |
NameVirtualHost *:443 | |
<VirtualHost *:443> | |
SSLEngine on | |
SSLCertificateFile /etc/ssl/certs/cert.pem | |
ServerAdmin webmaster@localhost | |
DocumentRoot /var/www/htdocs/htdocs/ | |
</VirtualHost> | |
ScriptAlias /cgi-bin/ /var/www/htdocs/htdocs/cgi-bin/ | |
<VirtualHost *:80> | |
DocumentRoot /var/www/htdocs/htdocs | |
ServerName localhost | |
RewriteEngine On | |
<Directory /var/www/htdocs/htdocs/> | |
Options Indexes FollowSymLinks MultiViews | |
Order allow,deny | |
allow from all | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment