Closed (fixed)
Project:
Provision
Version:
6.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Jun 2011 at 17:47 UTC
Updated:
12 Jun 2014 at 08:41 UTC
Jump to comment: Most recent
Not all actions work as expected because of missing location, which should send all request with URI ^/admin/.*/backup_migrate/.*\.mysql to php-fpm before the next location which denies sql in the URI for security reasons.
Comments
Comment #1
omega8cc commentedThis commit fixes the issue: http://drupalcode.org/sandbox/omega8cc/1111100.git/commit/51d51f0
Comment #2
anarcat commentedIsn't a permission deny exactly what we want here? We don't want the webserver to access those files... no?
Comment #3
omega8cc commentedNo, we don't want the access deny here. It is the opposite - we need to *open* the access here for URI starting with
/adminso the next location will not deny URI with.mysqlat the end. It is not a direct access to the file, as it goes via/admin.Marking as RTBC because it was already tested before submitting here.
Comment #4
anarcat commentedUnderstood, merged in 1.x and 2.x.