Nginx 是一款高性能的 HTTP 和反向代理服务器,常用于 Web 服务、负载均衡、缓存等场景。以下是 Nginx 的核心使用方法和步骤:
sudo apt update
sudo apt install nginx
sudo yum install epel-release
sudo yum install nginx
brew install nginx
nginx.exe
。# 启动
sudo systemctl start nginx # systemd
nginx # 直接运行(默认路径)
# 停止
sudo systemctl stop nginx
nginx -s stop
# 重启(加载新配置)
sudo systemctl restart nginx
nginx -s reload
# 检查配置语法
nginx -t
# 查看版本
nginx -v
/etc/nginx/nginx.conf
(Linux)或 conf/nginx.conf
(Windows)。/etc/nginx/conf.d/
或 /etc/nginx/sites-enabled/
。server {
listen 80; # 监听端口
server_name example.com; # 域名或IP
location / {
root /var/www/html; # 网站根目录
index index.html; # 默认首页
}
}
将请求转发到其他服务(如 Node.js、Tomcat):
server {
listen 80;
server_name api.example.com;
location / {
proxy_pass http://localhost:3000; # 转发到本机3000端口
proxy_set_header Host $host;
}
}
在 nginx.conf
中配置多台后端服务器:
upstream backend {
server 192.168.1.100:8080 weight=3; # 权重3
server 192.168.1.101:8080; # 默认权重1
}
server {
listen 80;
server_name app.example.com;
location / {
proxy_pass http://backend;
}
}
使用 Let's Encrypt 免费证书或手动配置:
server {
listen 443 ssl;
server_name example.com;
ssl_certificate /path/to/cert.pem;
ssl_certificate_key /path/to/key.pem;
location / {
root /var/www/html;
index index.html;
}
}
/var/log/nginx/access.log
/var/log/nginx/error.log
nginx
server {
access_log /path/to/access.log;
error_log /path/to/error.log;
}
chmod -R 755 /var/www/html
)。nginx -t
检查语法。sudo ufw allow 80/tcp
)。proxy_set_header
配置。通过以上步骤,你可以快速部署 Nginx 并实现常见功能。如需更复杂的配置,可以参考官方文档:https://nginx.org/en/docs/