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.
12 lines
351 B
12 lines
351 B
server{
|
|
listen 80;
|
|
server_name tank.zicpo.cn;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:6010;
|
|
proxy_set_header host $host;
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
proxy_pass_request_headers on;
|
|
client_max_body_size 2048m;
|
|
}
|
|
}
|
|
|