1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-01 22:53:29 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

更新README.md;更新favicon.ico;修改一处拼写错误;小问题调整

This commit is contained in:
2022-04-03 14:53:45 +08:00
parent 49cb1ceb74
commit 6995c18e6e
5 changed files with 196 additions and 12 deletions

View File

@@ -42,7 +42,7 @@ http {
server 127.0.0.1:3000;
}
upstream backendSprintbootServer {
upstream backendSpringbootServer {
server 127.0.0.1:8090;
}
@@ -76,7 +76,7 @@ http {
# 在nginx 作为代理服务器时设置的IP列表会把经过的机器ip代理机器ip都记录下来用 【,】隔开;代码中用 echo $x-forwarded-for |awk -F, '{print $1}' 来作为源IP
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://backendSprintbootServer/api/;
proxy_pass http://backendSpringbootServer/api/;
index index.html index.htm;
}