You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
824 B
41 lines
824 B
#MaxKey nginx Proxy Server
|
|
|
|
server {
|
|
listen 80;
|
|
|
|
server_name localhost;
|
|
|
|
proxy_set_header host $host; # 转发请求时将请求的域名一起转发
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
#服务器集群路径
|
|
#认证后端
|
|
location /sign/ {
|
|
proxy_pass http://maxkey:9527/sign/;
|
|
}
|
|
|
|
#认证前端
|
|
location /maxkey/ {
|
|
proxy_pass http://maxkey-frontend:8527/maxkey/;
|
|
}
|
|
|
|
#管理后端
|
|
location /maxkey-mgt-api/ {
|
|
proxy_pass http://maxkey-mgt:9526/maxkey-mgt-api/;
|
|
}
|
|
|
|
#管理前端
|
|
location /maxkey-mgt/ {
|
|
proxy_pass http://maxkey-mgt-frontend:8526/maxkey-mgt/;
|
|
}
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
} |