立即学习:https://edu.csdn.net/course/play/27216/358414?utm_source=blogtoedu
高并发下Nginx安全配置:
一、版本安全
http板块下添加:
# 隐藏版本号
server_tokens off;
二、IP安全
白名单:
allow 192.168.1.1;
deny all;
黑名单:
deny 192.168.1.1;
allow all;
三、文件安全
http模块中的server块添加
location /logs {
autoindex on;
root /opt/nginx/;
}
location ^/logs~*\.(log|txt)$ {
add_header Content-Type text/plain;
root /opt/nginx/;
}
四、连接安全
HTTPS开启