Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
G12Project
/
b04a60d7881216e3e8ee3a4da7a29e746520792f
/
.
/
nginx.conf
blob: c9ea645f6c7cc837b4f0bb203b750acfc46be3a1 [
file
] [
log
] [
blame
]
server
{
listen
80
;
server_name team12
.
10813352.xyz
;
# 替换为你的域名
location
/
api
{
proxy_pass http
:
//localhost:12138;
proxy_set_header
Host
$host
;
proxy_set_header X
-
Real
-
IP $remote_addr
;
proxy_set_header X
-
Forwarded
-
For
$proxy_add_x_forwarded_for
;
}
}