Skip to content
Snippets Groups Projects
Commit df6d3795 authored by alexandr.benzonan's avatar alexandr.benzonan
Browse files

allow only connexion fron 10.0.0.0/24

parent a7ea1c39
No related branches found
No related tags found
No related merge requests found
server{
listen 80 default_server;
listen [::]:80 default_server;
allow {{allowed_ips}};
deny all;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment