Compare commits

..

No commits in common. "669336cc932b49c2738ee19d9907f29742704812" and "6e4f18fbc632d15df4e923a8d4c7d1be2286819a" have entirely different histories.

2 changed files with 0 additions and 38 deletions

View file

@ -241,18 +241,6 @@ 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

View file

@ -1,26 +0,0 @@
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;
}
}
}