location /jupyterWeb/ {标签:Control,header,Access,nginx,add,jupyterWeb,Allow From: https://www.cnblogs.com/exmyth/p/17868391.html
add_header X-Frame-Options SAMEORIGIN;
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 http://192.168.50.106:28888/;
proxy_read_timeout 1800;
}