From e9ec2176516ef41b830613b1c70b0704f611e661 Mon Sep 17 00:00:00 2001 From: yaso-meth Date: Wed, 24 Jul 2024 14:41:05 +0200 Subject: [PATCH] change api proxy pass port to 80 --- nginx/nginx.conf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 61a815d7..0a996965 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -17,6 +17,11 @@ http { server minio:9000; } + # upstream fastAPI { + # least_conn; + # server api:8080; + # } + server { listen 80; @@ -101,7 +106,7 @@ http { # Web Api location / { - proxy_pass http://MIH-API-Hub:8080/; + proxy_pass http://MIH-API-Hub:80/; } location ~ /.well-known/acme-challenge/ {