blob: 04983a9c118eafef594274232e8cfb947222d070 [file] [log] [blame]
server {
listen 80;
server_name team12.10813352.xyz; # 替换为你的域名
location /api/ {
# proxy_pass http://localhost:8080;
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# # 长连接支持
# proxy_http_version 1.1;
# proxy_set_header Connection "";
# # 超时设置
# proxy_connect_timeout 60s;
# proxy_send_timeout 60s;
# proxy_read_timeout 60s;
return 200 'API endpoint is under construction';
}
}