2020-11-12 14:51:28 +01:00

21 lines
304 B
Plaintext

server {
listen 80;
server_name 167.99.136.83;
access_log /var/log/nginx-debian.log;
error_log /var/log/nginx-debian.error;
location / {
root {{apt_dir}};
index index.html;
autoindex on;
}
location ~ /(.*)/conf {
deny all;
}
location ~ /(.*)/db {
deny all;
}
}