Created
February 24, 2013 23:55
-
-
Save jblac/5026320 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> | |
ServerName mysite.dev | |
ServerAlias www.mysite.dev | |
DocumentRoot /var/www/mysite.com/htdocs | |
<Directory /var/www/mysite.com/htdocs/> | |
Allow from all | |
</Directory> | |
RailsBaseURI / | |
RailsBaseURI /adm | |
<Directory /var/www/mysite.com/htdocs/www/> | |
RailsEnv development | |
AllowOverride all | |
Options -MultiViews | |
</Directory> | |
<Directory /var/www/mysite.com/htdocs/adm/> | |
RailsEnv development | |
AllowOverride all | |
Options -MultiViews | |
</Directory> | |
ErrorLog /var/www/mysite.com/logs/error.log | |
CustomLog /var/www/mysite.com/logs/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment