blob: 04983a9c118eafef594274232e8cfb947222d070 [file] [log] [blame]
22301102b1fd8fd2025-06-05 18:02:21 +08001server {
2 listen 80;
3 server_name team12.10813352.xyz; # 替换为你的域名
4
22301102686bdbd2025-06-05 18:02:21 +08005 location /api/ {
22301102c8584ee2025-06-07 10:37:33 +08006 # proxy_pass http://localhost:8080;
7 # proxy_set_header Host $host;
8 # proxy_set_header X-Real-IP $remote_addr;
9 # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2230110278a34162025-06-05 18:02:21 +080010
22301102c8584ee2025-06-07 10:37:33 +080011 # # 长连接支持
12 # proxy_http_version 1.1;
13 # proxy_set_header Connection "";
14 # # 超时设置
15 # proxy_connect_timeout 60s;
16 # proxy_send_timeout 60s;
17 # proxy_read_timeout 60s;
18 return 200 'API endpoint is under construction';
22301102b1fd8fd2025-06-05 18:02:21 +080019 }
20}