1
0
mirror of https://github.com/thib8956/nginx-proxy synced 2025-07-01 14:25:46 +00:00

Implemented NETWORK_ACCESS (squash commit)

This commit is contained in:
Steve Kamerman
2017-10-18 12:57:59 -04:00
parent f05f7a0ff9
commit 93d90884e2
4 changed files with 53 additions and 10 deletions

6
network_internal.conf Normal file
View File

@ -0,0 +1,6 @@
# Only allow traffic from internal clients
allow 127.0.0.0/8;
allow 10.0.0.0/8;
allow 192.168.0.0/16;
allow 172.16.0.0/12;
deny all;