标签: nginx

4 篇文章

Nginx同一端口同时监听http和https
nginx版本 1.22.1 依赖模块 stream、stream_ssl、stream_ssl_preread 配置代码 # 如:8080端口根据http和https分别转向不同的服务:https跳转至127.0.0.1:8081,http跳转至127.0.0.1:8082,在nginx配置文件中添加如下代码即可: # 注意,以下代码位置 和 h…
Nginx配置优化
隐藏版本号及关闭文件索引 # 隐藏版本号 在http 配置中添加:server_tokens off;配置即可 http { # 其他配置xxx server_tokens off; # 关闭文件索引 autoindex off; } # 重启nginx后即可生效 systemctl reload nginx; 全路径匹配 # 比如当前请求路径包含…
Nginx安装
操作系统 可使用 lsb_release -a 命令查看 LSB Version: core-11.1.0ubuntu4-noarch:security-11.1.0ubuntu4-noarch Distributor ID: Ubuntu Description: Ubuntu 22.04.4 LTS Release: 22.04 Codenam…