mirror of
https://github.com/thib8956/nginx-proxy
synced 2024-11-21 19:36:30 +00:00
7 lines
133 B
Plaintext
7 lines
133 B
Plaintext
# 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;
|