宝塔面板启动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...

2024-12-20 admin 585 阅读
.net程序配置好后,网站页面可以访问,但是内页伪静态部分访问有错误。

.net程序配置好后,网站页面可以访问,但是内页伪静态部分访问有错误。

1、遇到一个.net程序搬家后,网站设置数据库都正常,但是伪静态部分出错的问题。 2、各项设置都正常,网站也可以正常打开,但是 伪静态部分打不开。 后经过多方面排查,最后确认是站点...

2024-11-29 admin 299 阅读
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 737 阅读
tomcat 多站点部署https

tomcat 多站点部署https

<Connector port="443" protocol="org.apache.coyote.http11.Http11Nio2Protocol" SSLEnabled="true" defaultSSLHostConfigName="域名.com"> <SSLHostConfig hostName="域名.com...

2024-06-29 admin 338 阅读
tomcat 多站点部署https

tomcat 多站点部署https

<Connector port="443" protocol="org.apache.coyote.http11.Http11Nio2Protocol" SSLEnabled="true" defaultSSLHostConfigName="域名.com"> <SSLHostConfig hostName="域名.com...

2024-05-29 admin 242 阅读
IIS利用web.config隐藏部分响应头信息或 隐藏服务器响应头中php版本信息的方法

IIS利用web.config隐藏部分响应头信息或 隐藏服务器响应头中php版本信息的方法

<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <outboundRules rewriteBeforeCache="true"> <ru...

2024-01-29 admin 469 阅读
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 687 阅读
IIS访问提示“请求筛选模块被配置为拒绝包含双重转义序列的请求。” 解决方案。

IIS访问提示“请求筛选模块被配置为拒绝包含双重转义序列的请求。” 解决方案。

报错信息如下: HTTP 错误 404.11 - Not Found 请求筛选模块被配置为拒绝包含双重转义序列的请求。   以下是解决方法 方法1. wwwroot下建立web.config 内容如下: &...

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

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

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

2023-10-29 admin 361 阅读
IIS 禁用 HTTP OPTINOS 方法

IIS 禁用 HTTP OPTINOS 方法

在 IIS 上关闭 HTTP 请求中的 Trace 和 OPTIONS 方法可以通过修改 Web.config 文件来实现。以下是具体步骤: 1. 打开项目的 Web.config 文件。 2. 在 <configuration> 节点下添...

2023-09-29 admin 477 阅读