关于http和https允许请求设置header问题

时间:2025-02-17 12:13:18
### wechatapi Start upstream wechatapi { server localhost:8009; } server { listen 443 ssl; server_name ; underscores_in_headers on; ssl on; ssl_certificate /ssl/; ssl_certificate_key /ssl/txzs_unsecure.key; client_max_body_size 20M; access_log /system/logs/wechatapi_access.log; error_log /system/logs/wechatapi_error.log; root /system/wechatapi/current/public; index index.html; location / { try_files $uri @wechatapi; } location @wechatapi { proxy_read_timeout 300; proxy_connect_timeout 300; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_redirect off; proxy_pass http://wechatapi; } error_page 403 /500.html; error_page 404 /500.html; error_page 405 /500.html; error_page 500 501 502 503 504 /500.html; location ^~ /error/ { internal; root /system/wechatapi/current/public; } location /images/ { try_files $uri /images/; } } # wechatapi end