Some checks failed
CI / init (push) Has been cancelled
CI / Frontend node 18.16.0 (push) Has been cancelled
CI / Backend go (1.22) (push) Has been cancelled
CI / devops-test (1.22, 18.16.0) (push) Has been cancelled
CI / release-pr (push) Has been cancelled
CI / release-please (push) Has been cancelled
CI / devops-prod (1.22, 18.x) (push) Has been cancelled
CI / docker (push) Has been cancelled
26 lines
813 B
Plaintext
26 lines
813 B
Plaintext
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
|
|
#charset koi8-r;
|
|
#access_log logs/host.access.log main;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
add_header Cache-Control 'no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api {
|
|
proxy_set_header Host $http_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;
|
|
rewrite ^/api/(.*)$ /$1 break; #重写
|
|
proxy_pass http://177.7.0.12:8888; # 设置代理服务器的协议和地址
|
|
}
|
|
|
|
location /api/swagger/index.html {
|
|
proxy_pass http://127.0.0.1:8888/swagger/index.html;
|
|
}
|
|
} |