Skip to content

Instantly share code, notes, and snippets.

@barnabyalter
Last active August 29, 2015 14:19
Show Gist options
  • Save barnabyalter/91329dff11dcd55f1723 to your computer and use it in GitHub Desktop.
Save barnabyalter/91329dff11dcd55f1723 to your computer and use it in GitHub Desktop.
Configure passenger at sub-uri with a different name than sub folder
<VirtualHost *:443>
...
RewriteEngine on
DocumentRoot /apps
Alias /search /apps/findingaids
<Location /search>
PassengerBaseURI /search
PassengerAppRoot /apps/findingaids_repos/current
PassengerRuby /home/wsops/.rvm/wrappers/ruby-2.1.5/ruby
RailsEnv staging
</Location>
<Directory /apps/findingaids>
Order Allow,Deny
Allow from all
Options -MultiViews
SSLRequireSSL
SSLOptions +StrictRequire
</Directory>
RewriteRule ^/$ /search [R]
...
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment