Last active
August 29, 2015 14:02
-
-
Save vmasciotta/383ea0e883dfd5a494a8 to your computer and use it in GitHub Desktop.
Example Demo VirtualHost Magento
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
NameVirtualHost *:80 | |
Include /etc/httpd/vhosts.d/*.conf |
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> | |
DocumentRoot /var/www/html/vhosts/magento | |
ServerName magento.localhost | |
ServerAdmin [email protected] | |
<Directory /var/www/html/vhosts/magento> | |
AllowOverride All | |
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