Skip to content
Snippets Groups Projects
Verified Commit e15f01b6 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

allow access from all local IP spaces

parent f82f2cb6
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,10 @@ http {
# Allow fpm ping and status from localhost
location ~ ^/(fpm-status|fpm-ping)$ {
access_log off;
allow 127.0.0.1;
allow 127.0.0.0/8;
allow 10.0.0.0/8;
allow 172.16.0.0/12;
allow 192.168/16;
deny all;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment