如何将Nginx配置成安全的web服务器

Nginx是一个轻量级的,高性能的Web服务器以及反向代理和邮箱(IMAP/POP3)代理服务器。它运行在UNIX,GNU/Linux,BSD各种版本,Mac OS X,Solaris和Windows。根据调查统计,6%的网站使用Nginx Web服务器。Nginx是少数能处理C10K问题的服务器之一。跟传统的服务器不同,Nginx不依赖线程来处理请求。相反,它使用了更多的可扩展的事件驱动(异步)架构。Nginx为一些高流量的网站提供动力,比如WordPress,人人网,腾讯,景安等。这篇文章主要是介绍如何提高运行在Linux或UNIX系统的Nginx Web服务器的安全性。

Nginx配置

默认配置文件和Nginx端口

/usr/local/nginx/conf/ – Nginx配置文件目录,/usr/local/nginx/conf/nginx.conf是主配置文件

/usr/local/nginx/html/ – 默认网站文件位置

/usr/local/nginx/logs/ – 默认日志文件位置

Nginx HTTP默认端口 : TCP 80

Nginx HTTPS默认端口: TCP 443

你可以使用以下命令来测试Nginx配置文件准确性。

/usr/local/nginx/sbin/nginx -t 

将会输出。

the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

configuration file /usr/local/nginx/conf/nginx.conf test is successful

执行以下命令来重新加载配置文件。

/usr/local/nginx/sbin/nginx -s reload 

执行以下命令来停止服务器。

/usr/local/nginx/sbin/nginx -s stop 

一、配置SELinux

安全增强型Linux(SELinux)的是一个Linux内核的功能,它提供支持访问控制的安全政策保护机制。它可以大部分的攻击。下面我们来看如何启动基于CentOS/RHEL系统的SELinux。

安装SELinux

rpm -qa | grep selinux 

libselinux-1.23.10-2

selinux-policy-targeted-1.23.16-6

如果没有返回任何结果,代表没有安装 SELinux,如果返回了类似上面的结果,则说明系统安装了 SELinux。

布什值锁定

运行命令getsebool -a来锁定系统。

getsebool -a | less 

getsebool -a | grep off 

getsebool -a | grep o 

二、通过分区挂载允许最少特权

服务器上的网页/html/php文件单独分区。例如,新建一个分区/dev/sda5(第一逻辑分区),并且挂载在/nginx。确保/nginx是以noexec, nodev and nosetuid的权限挂载。以下是我的/etc/fstab的挂载/nginx的信息:

LABEL=/nginx /nginx ext3 defaults,nosuid,noexec,nodev 1 2

注意:你需要使用fdisk和mkfs.ext3命令创建一个新分区。

三、配置/etc/sysctl.conf强化Linux安全

你可以通过编辑/etc/sysctl.conf来控制和配置Linux内核、网络设置。

# Avoid a smurf attack 

net.ipv4.icmp_echo_ignore_broadcasts = 1 

  

# Turn on protection for bad icmp error messages 

net.ipv4.icmp_ignore_bogus_error_responses = 1 

  

# Turn on syncookies for SYN flood attack protection 

net.ipv4.tcp_syncookies = 1 

  

# Turn on and log spoofed, source routed, and redirect packets 

net.ipv4.conf.all.log_martians = 1 

net.ipv4.conf.default.log_martians = 1 

  

No source routed packets here 

net.ipv4.conf.all.accept_source_route = 0 

net.ipv4.conf.default.accept_source_route = 0 

  

# Turn on reverse path filtering 

net.ipv4.conf.all.rp_filter = 1 

net.ipv4.conf.default.rp_filter = 1 

  

# Make sure no one can alter the routing tables 

net.ipv4.conf.all.accept_redirects = 0 

net.ipv4.conf.default.accept_redirects = 0 

net.ipv4.conf.all.secure_redirects = 0 

net.ipv4.conf.default.secure_redirects = 0 

  

# Don't act as a router 

net.ipv4.ip_forward = 0 

net.ipv4.conf.all.send_redirects = 0 

net.ipv4.conf.default.send_redirects = 0 

  

# Turn on execshild 

kernel.exec-shield = 1 

kernel.randomize_va_space = 1 

  

# Tuen IPv6 

net.ipv6.conf.default.router_solicitations = 0 

net.ipv6.conf.default.accept_ra_rtr_pref = 0 

net.ipv6.conf.default.accept_ra_pinfo = 0 

net.ipv6.conf.default.accept_ra_defrtr = 0 

net.ipv6.conf.default.autoconf = 0 

net.ipv6.conf.default.dad_transmits = 0 

net.ipv6.conf.default.max_addresses = 1 

  

# Optimization for port usefor LBs 

# Increase system file descriptor limit 

fs.file-max = 65535 

  

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。