diff options
Diffstat (limited to 'docker')
-rw-r--r-- | docker/etc/nginx/nginx.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/etc/nginx/nginx.conf b/docker/etc/nginx/nginx.conf index e05c1f88..fcc9a9aa 100644 --- a/docker/etc/nginx/nginx.conf +++ b/docker/etc/nginx/nginx.conf @@ -44,6 +44,10 @@ http { include fastcgi_params; } + location ~ /data { + return 404; + } + location ~* ^.+\.(log|sqlite)$ { return 404; } |