多功能 SSL/TLS 证书生成工具

开源工具 multicertgen:面向 RSA、ECC 与国密 SM2 的 SSL/TLS 证书链生成。

2024-12-22 · 2 分钟

自动构建最新版本的 Nginx

自动获取并静态编译最新 Nginx 及其 PCRE2、zlib、OpenSSL 依赖。

2024-12-22 · 2 分钟

Linux chroot Environment: Principles and Detailed Applications

In Linux system management, chroot changes the root directory for a process to enable file system isolation. Principles, configuration, and a Postfix/SASL…

2024-12-08 · 4 分钟

Linux chroot 环境:原理与应用详解

介绍 chroot 的原理,并通过 Postfix 调用 SASL 的实战演示配置与验证。

2024-12-08 · 3 分钟

Detailed Configuration Guide for the NGINX Directive ssl_password_file

Using ssl_password_file in NGINX for SSL/TLS Private Key Management

2024-12-03 · 7 分钟

NGINX 指令 ssl_password_file 配置详解

ssl_password_file 指定含密码的文件,用于解锁加密的 SSL/TLS 私钥;密码错误会导致 NGINX 启动或重载失败。

2024-12-03 · 4 分钟

NGINX 中HTTP请求大小相关配置及解决方案-1

NGINX中收到HTTP请求大小相关的错误,以下典型错误及相关解决方案。

2024-11-24 · 2 分钟

Troubleshooting HTTP 400/414/413 Errors in NGINX: A Complete Guide

NGINX HTTP 400/414/413 usually means oversized headers, an overlong URI, or a body past client_max_body_size — tune large_client_header_buffers, client_header_…

2024-11-24 · 3 分钟

HTTP cookie httponly secure

rfc6265中描述 防止非HTTP的api访问,比如javascript,这部分需要相关客户端(如浏览器)的支持。 RFC2818 指定cookie需要在https环境中使用。 搭建环境使用浏览器验证。 下面是一个完整的 HttpOnly 和 Secure Cookie 的例子,包括客户端和服务端的实现。我们使用…

2024-11-19 · 3 分钟

shell heredoc

在 Shell 中用 heredoc 定义多行字符串,语法更清晰可读。

2024-11-14 · 3 分钟