Created
February 3, 2013 03:38
-
-
Save jblac/4700465 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 railsapp.dev | |
ServerAlias www.railsapp.dev | |
DocumentRoot /var/www/railsapp/public/ | |
RailsEnv development | |
<Directory var/www/railsapp/public> | |
Allow from all | |
Options -MultiViews | |
</Directory> | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerName railsapp.prod | |
ServerAlias www.railsapp.prod | |
DocumentRoot /var/www/railsapp/public/ | |
RailsEnv production | |
<Directory var/www/railsapp/public> | |
Allow from all | |
Options -MultiViews | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment