summaryrefslogtreecommitdiff
path: root/puppet/modules/site_static/templates/rack.erb
blob: d70d3ddb57c8d89577784b56170c76de51fed31e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  #PassengerLogLevel 1
  #PassengerAppEnv production
  #PassengerFriendlyErrorPages on
<%- if @location_path != '' -%>
  Alias /<%=@location_path%> "<%=@directory%>"
  <Location /<%=@location_path%>>
    PassengerBaseURI /<%=@location_path%>
    PassengerAppRoot "<%=File.dirname(@directory)%>"
  </Location>
<%- end -%>
  <Directory "<%=@directory%>">
    Order deny,allow
    Allow from all
    Options -MultiViews
  </Directory>