From 8c5c75c6e17586b6841dcdd33fe84449d5ae2cd9 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Wed, 20 Mar 2024 11:30:26 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=89=93=E5=8C=85nginx=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/build/etc/nginx/conf.d/default.conf | 4 +- build/build/etc/nginx/conf.d/omc.conf | 72 ----------------------- 2 files changed, 1 insertion(+), 75 deletions(-) delete mode 100644 build/build/etc/nginx/conf.d/omc.conf diff --git a/build/build/etc/nginx/conf.d/default.conf b/build/build/etc/nginx/conf.d/default.conf index 018fa13..abcde44 100644 --- a/build/build/etc/nginx/conf.d/default.conf +++ b/build/build/etc/nginx/conf.d/default.conf @@ -16,7 +16,7 @@ server { # OMC location / { - root /usr/share/nginx/html/dist; + root /usr/local/omc/htdocs/front; try_files $uri $uri/ /index.html; index index.html index.htm; @@ -25,7 +25,6 @@ server { location /omc-api/ { proxy_pass http://192.168.5.57:33030/; - proxy_http_version 1.1; proxy_cache_bypass $http_upgrade; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; @@ -40,7 +39,6 @@ server { location /api/rest/ { proxy_pass http://192.168.5.57:33030/nms-cxy/api/rest/; - proxy_http_version 1.1; proxy_cache_bypass $http_upgrade; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; diff --git a/build/build/etc/nginx/conf.d/omc.conf b/build/build/etc/nginx/conf.d/omc.conf deleted file mode 100644 index 35cf64f..0000000 --- a/build/build/etc/nginx/conf.d/omc.conf +++ /dev/null @@ -1,72 +0,0 @@ -server { - listen 4443 ssl; - listen [::]:4443 ssl; - server_name 0.0.0.0; - root /usr/local/omc/htdocs/front/; - index index.html index.htm; - server_name localhost; - # SSL - ssl_certificate /usr/local/omc/etc/certs/omc-server.crt; - ssl_certificate_key /usr/local/omc/etc/certs/omc-server.key; - - # CA, 自定义 - ssl_client_certificate /usr/local/omc/etc/certs/omc-ca.crt; - ssl_verify_client on; - - # ssl ciphers - ssl_protocols TLSv1.1 TLSv1.2; - ssl_prefer_server_ciphers on; - -# location /api/rest/securityManagement { -# proxy_pass http://127.0.0.1:5050; -# } -# location /api/rest/resourceManagement { -# proxy_pass http://127.0.0.1:5050; -# } -# location /api/rest/performanceManagement { -# proxy_pass http://127.0.0.1:5050; -# } -# location /api/rest/faultManagement { -# proxy_pass http://127.0.0.1:5050; -# } -# location /api/rest/aaaa/ { -# proxy_pass http://127.0.0.1:4040; -# } - location /api/rest/ { - proxy_pass http://127.0.0.1:3030; - } - location / { - try_files $uri $uri/ =404; - } -} - -server { - listen 8888 default_server; - listen [::]:8888 default_server; - root /usr/local/omc/htdocs/front/; - index index.html index.htm; - server_name localhost; - - location /omc-api/ { - proxy_pass http://127.0.0.1:3030/; - - proxy_http_version 1.1; - proxy_cache_bypass $http_upgrade; - 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_set_header X-Forwarded-Host $host; - proxy_set_header X-Forwarded-Port $server_port; - } - - location / { - root /usr/local/omc/htdocs/front; - - try_files $uri $uri/ /index.html; - index index.html index.htm; - } -} -