51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

经验分享

【转】LNMP下Nginx如何设置域名301重定向

【转】LNMP下Nginx如何设置域名301重定向

厉飞雨 阅读(98) 评论(0) 赞(6)

LNMP下的Nginx如果想将域名lnmp.org 301重定向到www.lnmp.org,同时www.lnmp.org已经添加上,可以按如下步骤修改 使用命令编辑器[vi](//www.vpser.net/manage/vi.html)、[nano](http://www.vpser.net/manage/nano.html)或[winscp图形管理软件](http://ww...

nginx 安全配置参数

nginx 安全配置参数

厉飞雨 阅读(50) 评论(0) 赞(6)

http 模块添加 即可解决 1,2,3,4 问题: add_header X-Frame-Options "SAMEORIGIN"; add_header X-XSS-Protection "1; mode=block"; add_header X-Content-Type-Options "no...

nginx try_files指令详解

nginx try_files指令详解

厉飞雨 阅读(53) 评论(0) 赞(3)

举例说明 示例一: location / { root data; index index.html index.htm; try_files $uri $uri/ /index.html; } 解释配置: root:设置静态根目录为 data index:设置目录的默认文件为 index.h...

[重写]whmcs nginx rewrite规则

[重写]whmcs nginx rewrite规则

厉飞雨 阅读(76) 评论(0) 赞(7)

之前发的太拉胯了, 重新写了一份. ![](http://static.51tbox.com/static/2024-08-29/col/cb3aec3c8f6bc18df92e5f39fb7bb86d/4b24476e84764cd3add42cb683fc9965.png.jpg) 针对后台文件夹更名后, 用try_files判断,免去写白名单验证了, 官方爱咋折腾出了...

nginx 403 总结

nginx 403 总结

厉飞雨 阅读(2146) 评论(0) 赞(5)

nginx 403 错误表示服务器拒绝了客户端的请求,**表明客户端无权访问所请求的资源**。 导致此错误的原因有多种,以下列出了一些常见原因和解决方法: 1. 文件权限问题 --------- 检查要访问的文件或目录是否具有正确的访问权限。 为文件或目录授予必要的读取权限,例如 chmod 644 file.txt。 chmod 644 -R 可以先新用...

nginx 安装(docker版)

nginx 安装(docker版)

厉飞雨 阅读(79) 评论(0) 赞(5)

[(3 封私信 / 7 条消息) 如何使用docker部署nginx? - 知乎 (zhihu.com)](https://www.zhihu.com/question/497914242/answer/2984936068) 1-先通过创建一个临时容器 nginx 得到默认配置文件,并放到宿主机上,宿主机上要配置好目录结构。 docker run -d --nam...

nginx proxy_pass 502 559 selinux

nginx proxy_pass 502 559 selinux

厉飞雨 阅读(65) 评论(0) 赞(4)

测试环境上, 配置文件 nginx 一模一样, 在生产上就出502 。 我今天在一台新的liunx上运行nginx来进行反向代理时候,发现怎么测都是502 ![](http://static.51tbox.com/static/2024-08-29/col/e990933b647b9cfe4af101946991be82/6ac11ddfac1d415485dcc7e634...

node dockerfile (nginx)

node dockerfile (nginx)

厉飞雨 阅读(57) 评论(0) 赞(7)

node dockerfile FROM nginx #将dist目录内容复制到nginx容器html内部 COPY dist /usr/share/nginx/html/ EXPOSE 80 springboot dockerfile : [连接](https://51tbox.com/) tomcat do...

logstash 解析nginx日志

logstash 解析nginx日志

厉飞雨 阅读(93) 评论(0) 赞(7)

logstash 启动慢,有的需要等1分钟左右。 filebeats 就很快 记录读取文件: /usr/share/logstash/data/plugins/inputs/file 1- filter插件通用字段案例 ----------------- 将message 字段自动解析: "message" => "...