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…
@echo off rem 提供Windows下nginx的启动,重启,关闭功能 echo ==================begin======================== cls ::ngxin 所在的盘符 set NGINX_PATH=D: ::nginx 所在目录 set NGINX_DIR=D:\program-dev\ngi…
隐藏版本号及关闭文件索引 # 隐藏版本号 在http 配置中添加:server_tokens off;配置即可 http { # 其他配置xxx server_tokens off; # 关闭文件索引 autoindex off; } # 重启nginx后即可生效 systemctl reload 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…