Files
ldap-identidy/docker/single-container.nginx.conf
Bastian Wagner 0fd85573d2 docker
2026-07-15 14:31:56 +02:00

16 lines
248 B
Plaintext

server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
index index.html;
location = /config.js {
add_header Cache-Control "no-store";
try_files $uri =404;
}
location / {
try_files $uri $uri/ /index.html;
}
}