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.
|
# 如果没有显式声明 default server 则第一个 server 会被隐式的设为 default server |
|
server { |
|
# 自定义访问端口 |
|
listen 80; |
|
# 服务名称 |
|
server_name git.kanglailab.com; |
|
location / { |
|
proxy_pass http://localhost:8066; |
|
} |
|
} |
|
|
|
|