Compare commits

..

2 commits

Author SHA1 Message Date
669336cc93 Merge pull request 'MIH Flappak repo' (#5) from v.1.3.0 into main
Reviewed-on: #5
2026-06-17 10:20:52 +02:00
yaso
4562998bee MIH Flappak repo 2026-06-17 10:14:43 +02:00
2 changed files with 38 additions and 0 deletions

View file

@ -241,6 +241,18 @@ services:
- "127.0.0.1:8085:80" - "127.0.0.1:8085:80"
networks: networks:
- mih-network - 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 ==================================================================== #============== Firebaase ====================================================================
# firebase: # firebase:
# container_name: MIH-firebase-emulator # 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;
}
}
}