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 centos | |
# !!! Be sure to point DocumentRoot to 'public'! | |
DocumentRoot /apps/mysite/public | |
<Directory /apps/mysite/public> | |
# This relaxes Apache security settings. | |
AllowOverride all | |
# MultiViews must be turned off. | |
Options -MultiViews | |
</Directory> |
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
SetEnv LD_LIBRARY_PATH /home/aaron/.rvm/rubies/ruby-1.9.2-p320/lib | |
SetEnv GEM_PATH /home/aaron/.rvm/gems/ruby-1.9.2-p320:/home/aaron/.rvm/gems/ruby-1.9.2-p320@global | |
<VirtualHost *:80> | |
ServerName centos | |
# !!! Be sure to point DocumentRoot to 'public'! | |
DocumentRoot /apps/mysite/public | |
<Directory /apps/mysite/public> | |
# This relaxes Apache security settings. | |
AllowOverride all |