From 43bf2cfe7f4b903689fc5b71fc6671210f1857e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 9 Oct 2025 04:52:21 +0200 Subject: [PATCH] feat: app icon and readme --- Projects/kompose/docs/nginx.conf | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/Projects/kompose/docs/nginx.conf b/Projects/kompose/docs/nginx.conf index 2c17daa7..54abe9e4 100644 --- a/Projects/kompose/docs/nginx.conf +++ b/Projects/kompose/docs/nginx.conf @@ -1,13 +1,11 @@ -server { - listen 80; - listen [::]:80; - server_name localhost; - index index.html index.htm; +http { + server { + listen 80 default_server; - location /kompose { - alias /usr/share/nginx/html/kompose; + root /usr/share/nginx/html; + + location / { try_files $uri $uri/ /index.html; } - - # other nginx default stuff, never changed these + } }