Files
notion-2api/nginx.conf
Chinese-tingfeng aa9366f1f0 Add files via upload
2025-10-13 02:12:38 +08:00

38 lines
1017 B
Nginx Configuration File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

worker_processes auto;
events {
worker_connections 1024;
}
http {
upstream notion_backend {
server app:8000;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://notion_backend;
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_set_header X-Forwarded-Proto $scheme;
# 【核心修正】增加代理超时时间以应对Cloudflare挑战
proxy_connect_timeout 600s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;
send_timeout 600s;
# 流式传输优化
proxy_buffering off;
proxy_cache off;
proxy_set_header Connection '';
proxy_http_version 1.1;
chunked_transfer_encoding off;
}
}
}