Created
September 26, 2012 14:44
-
-
Save Cacodaimon/3788456 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
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName phpzend | |
DocumentRoot /var/www/zend/public | |
<Directory /> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
LogLevel warn | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName phpplain | |
DocumentRoot /var/www/phpplain | |
<Directory /> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
allow from all | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
LogLevel warn | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerAdmin webmaster@localhost | |
ServerName dotnet | |
MonoApplications dotnet "/:/var/www/dotnet" | |
<Directory /> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
SetHandler mono | |
MonoSetServerAlias dotnet | |
MonoSetServerAlias dotnet | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
LogLevel warn | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment