summaryrefslogtreecommitdiff
path: root/puppet/modules/site_static/templates/rack.erb
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/site_static/templates/rack.erb')
-rw-r--r--puppet/modules/site_static/templates/rack.erb10
1 files changed, 2 insertions, 8 deletions
diff --git a/puppet/modules/site_static/templates/rack.erb b/puppet/modules/site_static/templates/rack.erb
index aae91f1c..d70d3ddb 100644
--- a/puppet/modules/site_static/templates/rack.erb
+++ b/puppet/modules/site_static/templates/rack.erb
@@ -1,21 +1,15 @@
#PassengerLogLevel 1
#PassengerAppEnv production
#PassengerFriendlyErrorPages on
-<%- if @location_path == '' -%>
- <Directory "<%=@directory%>">
- Order deny,allow
- Allow from all
- Options -MultiViews
- </Directory>
-<%- else -%>
+<%- 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>
-<%- end -%>