Created
January 30, 2009 21:25
-
-
Save knowuh/55265 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 127.0.0.1> | |
RailsDefaultUser npaessel | |
RailsEnv production | |
ServerName rigse.noah | |
DocumentRoot "/Users/npaessel/lab/ruby/rigse/public" | |
ErrorLog "/Users/npaessel/lab/ruby/rigse/log/error.log" | |
<Directory "/Users/npaessel/lab/ruby/rigse/public"> | |
Options FollowSymLinks MultiViews Includes | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> | |
</VirtualHost> | |
<VirtualHost 127.0.0.1> | |
RailsDefaultUser npaessel | |
RailsEnv production | |
ServerName test.noah | |
DocumentRoot "/Users/npaessel/lab/ruby/test/public" | |
ErrorLog "/Users/npaessel/lab/ruby/test/log/error.log" | |
<Directory "/Users/npaessel/lab/ruby/test/public"> | |
Options FollowSymLinks MultiViews Includes | |
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