Fix period escapes

pull/159/head
MattIPv4 2020-06-16 16:56:28 +01:00
parent 73c9bd8174
commit 88a4929d36
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export default global => {
const config = {};
config['# Drupal: deny private files'] = '';
config['location ~ ((^|/)\.|^.*\.yml$|^/sites/.*/private/|^/sites/[^/]+/[^/]*settings.*\.php$)'] = {
config['location ~ ((^|/)\\.|^.*\\.yml$|^/sites/.*/private/|^/sites/[^/]+/[^/]*settings.*\\.php$)'] = {
deny: 'all',
return: '404',
};