update app env and nginx to cater for minio

This commit is contained in:
2024-07-18 10:27:27 +02:00
parent 9189201229
commit e7862d1638
5 changed files with 15 additions and 6 deletions

View File

@@ -25,15 +25,21 @@ http {
root /var/www/html;
index index.php index.html index.htm;
# Web App
location / {
proxy_pass http://MIH-UX:83/;
}
# API Hub
location /api/ {
proxy_pass http://MIH-API-Hub:8080/;
}
#Minio storage
location /files/ {
proxy_pass http://MIH-Minio:9000/;
}
location ~ /.well-known/acme-challenge/ {
root /var/www/certbot;
}