插件窝 干货文章 nginx怎么用

nginx怎么用

Nginx 配置 server 端口 835    来源:    2025-04-05

Nginx 是一款高性能的 HTTP 和反向代理服务器,常用于 Web 服务、负载均衡、缓存等场景。以下是 Nginx 的核心使用方法和步骤:


1. 安装 Nginx

Linux (Ubuntu/Debian)

sudo apt update
sudo apt install nginx

Linux (CentOS/RHEL)

sudo yum install epel-release
sudo yum install nginx

MacOS (Homebrew)

brew install nginx

Windows

  • 从官网下载 Windows 版 Nginx:https://nginx.org/en/download.html
  • 解压后直接运行 nginx.exe

2. 常用命令

# 启动
sudo systemctl start nginx    # systemd
nginx                         # 直接运行(默认路径)

# 停止
sudo systemctl stop nginx
nginx -s stop

# 重启(加载新配置)
sudo systemctl restart nginx
nginx -s reload

# 检查配置语法
nginx -t

# 查看版本
nginx -v

3. 配置文件结构

  • 主配置文件:/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;       # 默认首页
    }
}

4. 反向代理配置

将请求转发到其他服务(如 Node.js、Tomcat):

server {
    listen 80;
    server_name api.example.com;

    location / {
        proxy_pass http://localhost:3000;  # 转发到本机3000端口
        proxy_set_header Host $host;
    }
}

5. 负载均衡

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;
    }
}

6. HTTPS 配置(SSL 证书)

使用 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;
    }
}

7. 日志管理

  • 访问日志:/var/log/nginx/access.log
  • 错误日志:/var/log/nginx/error.log
  • 自定义日志路径: nginx server { access_log /path/to/access.log; error_log /path/to/error.log; }

8. 常见问题排查

  • 端口冲突:确保没有其他服务占用 80/443 端口(如 Apache)。
  • 权限问题:Nginx 需要读取网站文件的权限(chmod -R 755 /var/www/html)。
  • 配置错误:用 nginx -t 检查语法。
  • 防火墙:开放端口(sudo ufw allow 80/tcp)。

9. 进阶功能

  • 缓存静态文件:优化加载速度。
  • Gzip 压缩:减少传输体积。
  • 限制访问:基于 IP 或密码认证。
  • WebSocket 支持:通过 proxy_set_header 配置。

通过以上步骤,你可以快速部署 Nginx 并实现常见功能。如需更复杂的配置,可以参考官方文档:https://nginx.org/en/docs/