Nginx (发音为"engine-x") 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器。它具有占用内存少、并发能力强、配置简单等特点,已成为现代Web架构中的重要组件。
sudo apt update
sudo apt install nginx
sudo systemctl start nginx
sudo systemctl enable nginx
sudo yum install epel-release
sudo yum install nginx
sudo systemctl start nginx
sudo systemctl enable nginx
nginx.exe
启动服务brew install nginx
brew services start nginx
/etc/nginx/nginx.conf
(Linux) 或 conf/nginx.conf
(Windows)/etc/nginx/sites-available/
(通常存放配置) 和 /etc/nginx/sites-enabled/
(启用配置)server {
listen 80;
server_name example.com www.example.com;
root /var/www/example.com;
index index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
}
server {
listen 80;
server_name example.com;
root /var/www/example.com;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
}
server {
listen 80;
server_name api.example.com;
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
# 启动Nginx
sudo systemctl start nginx
# 停止Nginx
sudo systemctl stop nginx
# 重启Nginx
sudo systemctl restart nginx
# 重新加载配置(不中断服务)
sudo systemctl reload nginx
# 检查配置语法
sudo nginx -t
# 查看状态
sudo systemctl status nginx
# 启动
nginx.exe
# 停止
nginx.exe -s stop
# 重新加载配置
nginx.exe -s reload
# 检查配置
nginx.exe -t
工作进程优化:
worker_processes auto; # 自动设置为CPU核心数
连接数优化:
events {
worker_connections 1024;
multi_accept on;
}
启用Gzip压缩:
gzip on;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
启用缓存:
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=my_cache:10m inactive=60m;
server {
location / {
proxy_cache my_cache;
proxy_cache_valid 200 302 10m;
proxy_cache_valid 404 1m;
}
}
禁用服务器信息:
server_tokens off;
限制HTTP方法:
if ($request_method !~ ^(GET|HEAD|POST)$ ) {
return 405;
}
防止点击劫持:
add_header X-Frame-Options "SAMEORIGIN";
启用HTTPS (使用Let's Encrypt):
sudo apt install certbot python3-certbot-nginx
sudo certbot --nginx -d example.com -d www.example.com
Nginx默认日志位置:
- 访问日志: /var/log/nginx/access.log
- 错误日志: /var/log/nginx/error.log
自定义日志格式:
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
}
端口冲突:
sudo netstat -tulnp | grep :80
权限问题:
www-data
或nginx
)有访问网站目录的权限sudo chown -R www-data:www-data /var/www/example.com
配置错误:
nginx -t
检查配置语法502 Bad Gateway:
通过本指南,您应该能够快速安装并配置Nginx服务器。根据实际需求调整配置,并定期检查日志以确保服务器正常运行。