admin管理员组

文章数量:1531792

2024年2月28日发(作者:)

include /etc/nginx/; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See /en/docs/ngx_core_#include # for more information. include /etc/nginx/conf.d/*.conf; server { #listen 80 default_server; server_name _; root /usr/share/nginx/html;

client_max_body_size 10m; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; location /{ proxy_pass localhost:8081; }

location /wx{ proxy_pass localhost:8080; } location /api{ proxy_pass localhost:8080; }

location /{ proxy_pass localhost:8080; }

location /swagger{ proxy_pass localhost:8080; }

location /swagger-resources{ proxy_pass localhost:8080; }

location /webjars{ proxy_pass localhost:8080; }

location /v2/api-docs{ proxy_pass localhost:8080; }

error_page 404 /; location = / { } error_page 500 502 503 504 /; location = / { } }}

本文标签: 微信开发专题