Compare commits

...

2 commits

Author SHA1 Message Date
13f4d36831 Merge pull request 'MIH FPHub repo config pt3' (#14) from v.1.3.0 into main
Reviewed-on: #14
2026-06-17 14:36:16 +02:00
yaso
3d58acf567 MIH FPHub repo config pt3 2026-06-17 14:35:39 +02:00
4 changed files with 10 additions and 2 deletions

View file

@ -249,8 +249,7 @@ services:
volumes: volumes:
- ./mih_ui/flatpak/nginx.conf:/etc/nginx/nginx.conf:ro - ./mih_ui/flatpak/nginx.conf:/etc/nginx/nginx.conf:ro
- ./mih_ui/repo:/usr/share/nginx/html:ro - ./mih_ui/repo:/usr/share/nginx/html:ro
- ./mih_ui/flatpak/favicon.png:/usr/share/nginx/html/favicon.png:ro - ./mih_ui/flatpak/assets:/www/mih_fphub_assets:ro
- ./mih_ui/flatpak/mih-fphub.flatpakrepo:/usr/share/nginx/html/mih-fphub.flatpakrepo:ro
ports: ports:
- "127.0.0.1:8086:80" - "127.0.0.1:8086:80"
networks: networks:

View file

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Before After
Before After

View file

@ -22,5 +22,14 @@ http {
autoindex on; autoindex on;
expires 1d; expires 1d;
} }
location = /mih-fphub.flatpakrepo {
alias /www/mih_fphub_assets/mih-fphub.flatpakrepo;
default_type text/plain;
}
location = /favicon.png {
alias /www/mih_fphub_assets/favicon.png;
}
} }
} }