康来智慧冷链-后端
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.
 
 
 
 
 
 

22 lines
480 B

# 如果没有显式声明 default server 则第一个 server 会被隐式的设为 default server
server {
client_max_body_size 100M;
# 自定义访问端口
listen 80;
# 服务名称
server_name git.kanglailab.com;
location / {
proxy_pass http://localhost:8066;
}
}
server {
client_max_body_size 100M;
# 自定义访问端口
listen 80;
# 服务名称
server_name fileview.kanglailab.com;
location / {
proxy_pass http://localhost:8086/;
}
}