my-homelab-configs/bootstrap/provisioning/templates/nginx.conf.tftpl

11 lines
139 B
Plaintext

server {
listen ${http_port};
server_name _;
root ${http_root};
autoindex on;
location / {
try_files $uri $uri/ =404;
}
}