38 lines
1017 B
Nginx Configuration File
38 lines
1017 B
Nginx Configuration File
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|