nginx
文章平均质量分 90
现实、太残忍
这个作者很懒,什么都没留下…
展开
-
nginx添加Set-Cookie属性Secure和HttpOnly
问题:在https环境中,等保要求为set-cookie增加secure属性(为了安全,防止http请求时使用此cookie)解决办法:在nginx配置文件中可以是用proxy_cookie_path属性实现,该属性可以修改response set-cookie的path属性。如下:proxy_cookie_path / "/; Path=/; Secure; HttpOnly";完整的location代码:location / { proxy...原创 2021-02-23 12:21:09 · 37016 阅读 · 4 评论 -
redhat linux安装nginx1.7.4版(非常简单)
1、检查环境是否安装了gcc pcre-devel zlib-devel openssl openssl-devel等rpm -qa | grep "软件或者包的名字"查询或yum list installed | grep "软件名或者包名"查询没有则安装,命令为:yum -y install gcc pcre-devel zlib-devel openssl openssl-devel2、下载nginx并解压wgethttps://nginx.org/download/ngi...原创 2020-09-23 11:25:51 · 1981 阅读 · 0 评论 -
504 Gateway Time-out
当使用nginx做反向代理tomcat时,ajax上传大文件,容易出现504 Gateway Time-out超时的情况。解决办法:增大代理超时时间设置proxy_connect_timeout 600;proxy_send_timeout 600;proxy_read_timeout 600;(关键)...原创 2020-08-20 11:01:29 · 565 阅读 · 0 评论