MIH Flappak repo

This commit is contained in:
yaso 2026-06-17 10:10:12 +02:00
parent 3f3a014add
commit 4562998bee
2 changed files with 38 additions and 0 deletions

View file

@ -241,6 +241,18 @@ services:
- "127.0.0.1:8085:80"
networks:
- mih-network
#============== MIH-Flatpak Repository =========================================================
mih-flatpak:
image: nginx:alpine
container_name: mih-flatpak
restart: always
volumes:
- ./mih_ui/flatpak/nginx.conf:/etc/nginx/nginx.conf:ro
- ./mih_ui/repo:/usr/share/nginx/html:ro
ports:
- "127.0.0.1:8086:80"
networks:
- mih-network
#============== Firebaase ====================================================================
# firebase:
# container_name: MIH-firebase-emulator

26
mih_ui/flatpak/nginx.conf Normal file
View file

@ -0,0 +1,26 @@
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 120;
keepalive_requests 10000;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
autoindex on;
expires 1d;
}
}
}