feat: app icon and readme

This commit is contained in:
2025-10-09 04:52:21 +02:00
parent fae4f326a4
commit 43bf2cfe7f

View File

@@ -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
}
}