server {
listen 80;
server_name jsgf.hebjlzy.com;
client_max_body_size 1000m;
location / {
proxy_pass http://localhost:8088/;
proxy_set_header Host $host;
proxy_set_header Referer ''; //忽略请求头Referer
}
}
关于https请求http问题
最新推荐文章于 2024-02-05 07:10:32 发布
该博客介绍了如何配置Nginx服务器进行反向代理到本地8088端口,并设置允许客户端最大上传文件大小为1GB。通过忽略Referer头部,确保了请求的安全性。
1万+

被折叠的 条评论
为什么被折叠?



