Created
August 31, 2011 14:33
-
-
Save petemcw/1183684 to your computer and use it in GitHub Desktop.
Sample Apache vhost Configuration File
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> | |
DocumentRoot "/path/to/web/files/" | |
ServerAdmin webmaster@localhost | |
ServerName localhost | |
#SetEnv MAGE_IS_DEVELOPER_MODE true | |
#SetEnv MAGE_RUN_CODE storecode | |
#SetEnv MAGE_RUN_TYPE website | |
<Directory "/path/to/web/files/"> | |
Options -Indexes -MultiViews +FollowSymLinks | |
AllowOverride all | |
Order deny,allow | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment