From 1d68a511ea7e3143fbf29b3f3a5b5250bf6de1e5 Mon Sep 17 00:00:00 2001 From: happybell80 Date: Mon, 29 Sep 2025 18:12:45 +0900 Subject: [PATCH] Remove Multi-AI CLI proxy configuration from nginx - Remove /multi-ai/ location blocks from both HTTP and HTTPS servers - Service will no longer be accessible via nginx proxy --- server-nginx-default | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/server-nginx-default b/server-nginx-default index a14c275..321d91d 100644 --- a/server-nginx-default +++ b/server-nginx-default @@ -114,20 +114,6 @@ server { proxy_set_header X-Forwarded-Proto $scheme; } - # Multi-AI CLI Integration (HTTP) - location /multi-ai/ { - proxy_pass http://192.168.219.52:8888/; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "upgrade"; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_read_timeout 300s; - proxy_connect_timeout 75s; - } - location /.well-known/acme-challenge/ { alias /var/www/html/.well-known/acme-challenge/; } @@ -264,20 +250,6 @@ server { proxy_set_header X-Forwarded-Proto $scheme; } - # Multi-AI CLI Integration (HTTPS) - location /multi-ai/ { - proxy_pass http://192.168.219.52:8888/; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "upgrade"; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_read_timeout 300s; - proxy_connect_timeout 75s; - } - location /.well-known/acme-challenge/ { alias /var/www/html/.well-known/acme-challenge/; }