Nginx部署WordPress支持SSL和伪静态

Nginx部署WordPress支持SSL和伪静态

server { listen 443; root /home/wwwroot/wenzhancc/wwwroot; ssl on; ssl_certificate /home/ssl/www.wenzhan.cc.crt; ssl_certificate_key /home/ssl/www.wenzhan.cc.key; ssl_pref...

21 天前 admin 70 阅读
宝塔面板启动nginx出现报错 nginx启动,出现libluajit-5.1.so.2错误的解决方法

宝塔面板启动nginx出现报错 nginx启动,出现libluajit-5.1.so.2错误的解决方法

通过宝塔面板启动Nginx 提示报错,通过 nginx configtest 提示报错如下 nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such fi...

29 天前 admin 34 阅读
nginx 如何配置该链接使用TLS1.3如何改成1.2

nginx 如何配置该链接使用TLS1.3如何改成1.2

要将 Nginx 配置中的 TLS 版本更改为 TLS 1.2,请按照以下步骤进行操作: 1、打开 Nginx 配置文件。通常,该文件位于 /etc/nginx/nginx.conf 或 /etc/nginx/conf.d/default.conf。 如...

2024-10-29 admin 54 阅读
宝塔面板nginx怎么监听ipv6,让网站可以通过ipv6访问

宝塔面板nginx怎么监听ipv6,让网站可以通过ipv6访问

1、先登录宝塔面板,找到对应的站点 点击 -设置   2、找到 配置文件   3.在 listen 80; 下面加上 listen :80;  ,如果配置了https 的话,要加上 listen :443 ...

2024-09-29 admin 48 阅读
The client needs a new connection for this request as the requested host name does not match the Server Name Indication (SNI) in use for this connection.

The client needs a new connection for this request as the requested host name does not match the Server Name Indication (SNI) in use for this connection.

The client needs a new connection for this request as the requested host name does not match the Server Name Indication (SNI) in use for this connection. 原因是使用apache 由...

2023-12-29 admin 63 阅读
常见网站安全漏洞处理方法

常见网站安全漏洞处理方法

如果使用nginx nginx.conf 文件中设置 http{ } 或 server{ } add_header Set-Cookie "HttpOnly"; add_header Set-Cookie "Secure";   如果使用IIS <rewrite&g...

2023-10-29 admin 15 阅读
常用Nginx日志分析命令

常用Nginx日志分析命令

1、查看访问量最大的前100个ip awk '{print $1}' 日志文件.log | sort -n |uniq -c | sort -rn | head -n 100 2、查看访问次数超过1000次的ip awk '{print $1}' 日志文件.log | sor...

2023-06-29 admin 12 阅读
nginx做反向代理报错peer closed connection in SSL handshake while SSL handshaking to upstream

nginx做反向代理报错peer closed connection in SSL handshake while SSL handshaking to upstream

一、具体报错 (一)背景简述 有个业务系统A部署在云上,由于某种原因需要用到nginx反向代理业务系统A。 部署完nginx反向代理,提供服务的时候,出现了如下报错。 2022/09/19 15...

2022-12-29 admin 44 阅读