diff options
Diffstat (limited to 'docs/de')
-rw-r--r-- | docs/de/user/installation.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/de/user/installation.rst b/docs/de/user/installation.rst index 35a30f52..131aa1f8 100644 --- a/docs/de/user/installation.rst +++ b/docs/de/user/installation.rst | |||
@@ -187,6 +187,12 @@ Angenommen du willst wallabag in das Verzeichnis ``/var/www/wallabag`` installie | |||
187 | internal; | 187 | internal; |
188 | } | 188 | } |
189 | 189 | ||
190 | # return 404 for all other php files not matching the front controller | ||
191 | # this prevents access to other php files you don't want to be accessible. | ||
192 | location ~ \.php$ { | ||
193 | return 404; | ||
194 | } | ||
195 | |||
190 | error_log /var/log/nginx/wallabag_error.log; | 196 | error_log /var/log/nginx/wallabag_error.log; |
191 | access_log /var/log/nginx/wallabag_access.log; | 197 | access_log /var/log/nginx/wallabag_access.log; |
192 | } | 198 | } |