spawner/user-template/nginx.conf
2026-01-30 18:00:41 +01:00

16 lines
266 B
Nginx Configuration File

server {
listen 8080;
server_name _;
# Root-Verzeichnis
root /usr/share/nginx/html;
# Alle Anfragen einfach auf root Location
location / {
try_files $uri $uri/ /index.html;
}
# Error pages
error_page 404 /index.html;
}