mirror of
https://github.com/mashirozx/Pixiv-Nginx.git
synced 2024-11-24 22:58:12 +08:00
12 lines
347 B
Plaintext
12 lines
347 B
Plaintext
|
include cert.conf;
|
||
|
|
||
|
location / {
|
||
|
resolver public1.alidns.com valid=300;
|
||
|
proxy_pass https://$http_host$request_uri;
|
||
|
proxy_http_version 1.1;
|
||
|
proxy_set_header Host $http_host;
|
||
|
proxy_set_header User-Agent $http_user_agent;
|
||
|
proxy_set_header Accept-Encoding '';
|
||
|
proxy_ssl_server_name on;
|
||
|
proxy_buffering off;
|
||
|
}
|