Created
December 22, 2014 05:58
-
-
Save chris-x86-64/2e3ac9846fa5cea374f4 to your computer and use it in GitHub Desktop.
Example Perl-CGI Apache2 config
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 webmaster@localhost | |
ServerName aho.baka.com | |
DocumentRoot /home/aho/public_html | |
<Directory /> | |
Options FollowSymLinks | |
AllowOverride None | |
</Directory> | |
<Directory /home/aho/app/> | |
Options -Indexes | |
Options Indexes MultiViews +ExecCGI +SymLinksIfOwnerMatch | |
AllowOverride None | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment