Created
September 28, 2012 15:14
-
-
Save arturo-c/3800450 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
sudo gem install passenger | |
LoadModule passenger_module /usr/lib/apache2/modules/mod_passenger.so | |
<IfModule mod_passenger.c> | |
PassengerRoot /usr | |
PassengerRuby /usr/bin/ruby | |
</IfModule> | |
Listen 3000 | |
NameVirtualHost *:3000 | |
<VirtualHost *:3000> | |
ServerAdmin webmaster@localhost | |
DocumentRoot /mnt/apci/importer/import_manager/public | |
RailsBaseURI /rails | |
ServerName a.import.dev.allplayers.com | |
<Directory /> | |
Options FollowSymLinks | |
AllowOverride None | |
</Directory> | |
<Directory /mnt/apci/importer/import_manager/public> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
</Directory> | |
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ | |
<Directory "/usr/lib/cgi-bin"> | |
AllowOverride None | |
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch | |
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