We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 685ef0b commit 61b0be0Copy full SHA for 61b0be0
nginx/proxy.conf
@@ -10,6 +10,11 @@ server {
10
11
server_name _;
12
13
+ location /server_status {
14
+ stub_status on;
15
+ access_log off;
16
+ }
17
+
18
location / {
19
# First attempt to serve request as file, then
20
# as directory, then fall back to displaying a 404.
@@ -21,12 +26,5 @@ server {
21
26
include snippets/fastcgi-php.conf;
22
27
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
23
28
}
24
-
25
- # deny access to .htaccess files, if Apache's document root
- # concurs with nginx's one
- #
- #location ~ /\.ht {
29
- # deny all;
30
- #}
31
32
0 commit comments