辛勤鼠标

文章
4
资源
0
加入时间
3年0月20天

Nginx通用配置--日志,https访问,强制跳转https,gzip压缩,前后端分离等一、JSON格式access日志配置二、强制跳转https三、https监听四、gzip压缩五、前后端分离location,proxy_pass配置六、上传文件大小限制配置client_max_body_size七、修改响应内容八、隐藏Nginx版本号九、使用if判断

强制跳转https# 根据访问的协议强制跳转if ($scheme = 'http'){rewrite ^/(.*)$ https://$host/$1 redirect;}# 根据访问的端口进行强制跳转if ($server_port = 80) { rewrite ^(.*)$ https://$host$1 permanent;}https监听# 一般放置在server块,https默认监听是443端口,需增加443端口监听listen 443 ssl;ss