|
@@ -5,7 +5,7 @@ server
|
|
|
server_name va.fusionpay.one;
|
|
|
index index.html index.htm default.htm default.html;
|
|
|
root /www/wwwroot/va/admin/dist;
|
|
|
-
|
|
|
+
|
|
|
#SSL-START SSL related configuration
|
|
|
#error_page 404/404.html;
|
|
|
ssl_certificate /www/server/panel/vhost/cert/server/fullchain.pem;
|
|
@@ -18,17 +18,17 @@ server
|
|
|
add_header Strict-Transport-Security "max-age=31536000";
|
|
|
error_page 497 https://$host$request_uri;
|
|
|
#SSL-END
|
|
|
-
|
|
|
+
|
|
|
#ERROR-PAGE-START Error page related configuration
|
|
|
#error_page 404 /404.html;
|
|
|
#error_page 502 /502.html;
|
|
|
#ERROR-PAGE-END
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
#REWRITE-START Pseudo-static related configuration
|
|
|
include /www/server/panel/vhost/rewrite/node_server.conf;
|
|
|
#REWRITE-END
|
|
|
-
|
|
|
+
|
|
|
location / {
|
|
|
index index.html index.htm;
|
|
|
try_files $uri $uri/ @router;
|
|
@@ -36,12 +36,12 @@ server
|
|
|
location @router {
|
|
|
rewrite ^.*$ /index.html last;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
#Files or directories forbidden to access
|
|
|
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md|package.json|package-lock.json|\.env|node_modules) {
|
|
|
return 404;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
#One-click application for SSL certificate verification directory related settings
|
|
|
location /.well-known/ {
|
|
|
root /www/wwwroot/va/server;
|
|
@@ -82,6 +82,22 @@ server
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
proxy_set_header Connection "upgrade";
|
|
|
}
|
|
|
+ location /open-api/ {
|
|
|
+ proxy_pass http://127.0.0.1:8009/api/open/;
|
|
|
+ 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 REMOTE-HOST $remote_addr;
|
|
|
+ add_header X-Cache $upstream_cache_status;
|
|
|
+
|
|
|
+ proxy_connect_timeout 30s;
|
|
|
+ proxy_read_timeout 86400s;
|
|
|
+ proxy_send_timeout 30s;
|
|
|
+ proxy_http_version 1.1;
|
|
|
+ proxy_set_header Upgrade $http_upgrade;
|
|
|
+ proxy_set_header Connection "upgrade";
|
|
|
+ }
|
|
|
+
|
|
|
location /api-doc/ {
|
|
|
proxy_pass http://127.0.0.1:8008/swagger-ui/index.html;
|
|
|
proxy_set_header Host $host;
|
|
@@ -98,7 +114,7 @@ server
|
|
|
proxy_set_header Connection "upgrade";
|
|
|
}
|
|
|
# End of HTTP reverse proxy related settings <<<
|
|
|
-
|
|
|
+
|
|
|
access_log /www/wwwlogs/server.log;
|
|
|
error_log /www/wwwlogs/server.error.log;
|
|
|
-}
|
|
|
+}
|