|
- location /upload {
- add_header Access-Control-Allow-Origin *;
- add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
- add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
- if ($request_method = 'OPTIONS') {
- return 204;}
- proxy_pass https://telegra.ph/upload;
- }
- location /file {
- proxy_pass https://telegra.ph/file;
- }
- client_max_body_size 5m;
复制代码
|
|