Added system/info endpoint, implement tagging

This commit is contained in:
2025-04-13 09:11:52 -04:00
parent c354ea6d78
commit d5bc4cafb8
17 changed files with 143 additions and 22 deletions

View File

@@ -5,7 +5,7 @@ server {
server_name ${NGINX_HOST};
location /api/ {
proxy_pass http://${NGINX_INTERNAL_HOST}:${API_PORT}/api/;
proxy_pass http://${NGINX_INTERNAL_HOST}:5000/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -13,7 +13,7 @@ server {
}
location /minio/ {
proxy_pass http://${NGINX_INTERNAL_HOST}:${MINIO_PORT_INTERNAL}/;
proxy_pass http://${NGINX_INTERNAL_HOST}:9001/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -22,7 +22,7 @@ server {
# Reverse proxy for the UI and default catch-all
location / {
proxy_pass http://${NGINX_INTERNAL_HOST}:${UI_PORT}/;
proxy_pass http://${NGINX_INTERNAL_HOST}:3000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

View File

@@ -25,7 +25,7 @@ server {
# ssl_prefer_server_ciphers on;
location /api/ {
proxy_pass http://${NGINX_INTERNAL_HOST}:${API_PORT}/api/;
proxy_pass http://${NGINX_INTERNAL_HOST}:5000/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -33,7 +33,7 @@ server {
}
location /minio/ {
proxy_pass http://${NGINX_INTERNAL_HOST}:${MINIO_PORT_INTERNAL}/;
proxy_pass http://${NGINX_INTERNAL_HOST}:9001/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -42,7 +42,7 @@ server {
# Reverse proxy for the UI and default catch-all
location / {
proxy_pass http://${NGINX_INTERNAL_HOST}:${UI_PORT}/;
proxy_pass http://${NGINX_INTERNAL_HOST}:3000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;