]> git.openstreetmap.org Git - chef.git/commitdiff
Check for file existence properly
authorTom Hughes <tom@compton.nu>
Sat, 22 Nov 2014 20:39:44 +0000 (20:39 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 22 Nov 2014 20:40:28 +0000 (20:40 +0000)
cookbooks/dev/templates/default/apache.user.erb

index fd6be28be5ac18a7bcbc980d997357e7a8b5f492..2c2093599da2a23d753a2f361c6b7c87e6979f65 100644 (file)
@@ -19,12 +19,13 @@ WSGIDaemonProcess <%= @user %>.dev.openstreetmap.org user=<%= @user %> inactivit
        CustomLog /var/log/apache2/<%= @user %>.dev.openstreetmap.org-access.log combined
        ErrorLog /var/log/apache2/<%= @user %>.dev.openstreetmap.org-error.log
 
-       RewriteCond <%= @directory %>%{REQUEST_FILENAME} -f
+       RewriteCond %{LA-U:REQUEST_FILENAME} -f
        RewriteRule ^/cgi-bin/(.*)$ /cgi-bin/cgiwrap/~<%= @user %>/cgi-bin/$1 [PT,L]
 
-       RewriteCond <%= @directory %>%{REQUEST_FILENAME} -f
+       RewriteCond %{LA-U:REQUEST_FILENAME} -f
        RewriteRule ^/cgi-bin-d/(.*)$ /cgi-bin/cgiwrapd/~<%= @user %>/cgi-bin/$1 [PT,L]
 
+       RewriteCond %{LA-U:REQUEST_FILENAME} -f
        RewriteRule ^/(.*\.ph(p|ps|p3|tml)(/.*)?)$ fcgi://127.0.0.1:<%= @port %><%= @directory %>/$1 [P]
 </VirtualHost>