隐藏版本号及关闭文件索引
# 隐藏版本号 在http 配置中添加:server_tokens off;配置即可
http {
# 其他配置xxx
server_tokens off;
# 关闭文件索引
autoindex off;
}
# 重启nginx后即可生效
systemctl reload nginx;
全路径匹配
# 比如当前请求路径包含在公共请求路径前缀,但是又需要单独处理,可以使用路径全匹配的方式,如需要对/api/v1/recordCallback单独处理,则可以使用如下配置:
# 单独处理此接口,注意,location后为 = ,代表全匹配。
location = /api/v1/recordCallback {
proxy_pass http://test.com;
}
# 公共api前缀
location /api {
proxy_pass http://test.com;
}
# 重载nginx后即可生效
# 参考:https://www.jianshu.com/p/4a8999ff3ce2
禁止访问某个文件夹
# nginx禁止访问某个目录,如:禁止对叫dirdeny目录的访问并返回403 Forbidden,可以使用下面的配置:
location /dirdeny {
deny all;
return 403;
}
# 重载nginx
systemctl reload nginx;
访问http地址错误后跳转至对应的https地址
# 在server 配置文件下添加如下配置即可,示例:
server {
listen 8080;
# http访问错误后直接跳转至https对应的地址
error_page 497 https://$host:$server_port$uri$is_args$args;
}
nginx参数可参考:nginx参数详解