Skip to content

Commit

Permalink
add private and local IPs to allowed addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
jungrafael committed Apr 11, 2024
1 parent 1470d95 commit cc6c16d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nginx.conf.default
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ http {
server {
listen 8080;

allow 127.0.0.0/8;
allow 10.0.0.0/8;
allow 172.16.0.0/12;
allow 192.168.0.0/16;
deny all;

access_log /var/log/proxy_access.log combined if=$log_ua;
Expand Down

0 comments on commit cc6c16d

Please sign in to comment.