From 9a15dcb7ca505e2617eb7d6a189270eaff7439ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ba=CC=81lint=20Szekeres?= Date: Wed, 22 May 2019 19:28:41 +0200 Subject: [PATCH] Revert ". files security fix" This reverts commit 1e88625548e3afe87ca5597b6039c59ecc9aaad2. --- public/templates/conf/nginxconfig.io/general.conf.html | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/public/templates/conf/nginxconfig.io/general.conf.html b/public/templates/conf/nginxconfig.io/general.conf.html index 5eae2fa..705485d 100644 --- a/public/templates/conf/nginxconfig.io/general.conf.html +++ b/public/templates/conf/nginxconfig.io/general.conf.html @@ -11,15 +11,10 @@ add_header Content-Security-Policy "{{ data.content_security_policy }}" always;< add_header Strict-Transport-Security "max-age=31536000{{ isHSTSSubdomains() ? '; includeSubDomains' : '' }}{{ isHSTSPreload() ? '; preload' : '' }}" always; # . files -location ^~ /. { +location ~ /\.(?!well-known) { deny all; } -# .well-known -location ^~ /.well-known/ { - allow all; -} - # favicon.ico location = /favicon.ico { log_not_found off;