Files
home/Projects/kompose/docs/nginx.conf

14 lines
287 B
Nginx Configuration File
Raw Normal View History

2025-10-09 04:36:44 +02:00
erver {
listen 80;
listen [::]:80;
server_name localhost;
index index.html index.htm;
location /kompose {
alias /usr/share/nginx/html/kompose;
try_files $uri $uri/ /index.html;
2025-10-08 13:54:19 +02:00
}
2025-10-09 04:36:44 +02:00
# other nginx default stuff, never changed these
2025-10-08 13:54:19 +02:00
}