基础配置

  1. user root;
  2. worker_processes 1;
  3. events {
  4. worker_connections 10240;
  5. }
  6. http {
  7. log_format '$remote_addr - $remote_user [$time_local] ' '"$request" $status $body_bytes_sent ' '"$http_referer" "$http_user_agent"';
  8. include mime.types;
  9. default_type application/octet-stream;
  10. sendfile on;
  11. #autoindex on;
  12. #autoindex_exact_size off;
  13. autoindex_localtime on;
  14. keepalive_timeout 65;
  15. gzip on;
  16. gzip_disable "msie6";
  17. gzip_min_length 100;
  18. gzip_buffers 4 16k;
  19. gzip_comp_level 1;
  20. gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
  21. gzip_types "*";
  22. gzip_vary off;
  23. server_tokens off;
  24. client_max_body_size 200m;
  25. server {
  26. listen 80 default_server;
  27. server_name _;
  28. return 403 /www/403/index.html;
  29. }
  30. include ../serve/*.conf;
  31. }

隐藏 Nginx 版本信息

  1. http {
  2. server_tokens off;
  3. }

禁止ip直接访问80端口

  1. server {
  2. listen 80 default;
  3. server_name _;
  4. return 500;
  5. }

启动 Web 服务 (Vue 项目为例)

  1. server {
  2. # 项目启动端口
  3. listen 80;
  4. # 域名(localhost)
  5. server_name _;
  6. # 禁止 iframe 嵌套
  7. add_header X-Frame-Options SAMEORIGIN;
  8. # 访问地址 根路径配置
  9. location / {
  10. # 项目目录
  11. root html;
  12. # 默认读取文件
  13. index index.html;
  14. # 配置 history 模式的刷新空白
  15. try_files $uri $uri/ /index.html;
  16. }
  17. # 后缀匹配,解决静态资源找不到问题
  18. location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {
  19. root html/static/;
  20. }
  21. # 图片防盗链
  22. location ~/static/.*\.(jpg|jpeg|png|gif|webp)$ {
  23. root html;
  24. valid_referers *.deeruby.com;
  25. if ($invalid_referer) {
  26. return 403;
  27. }
  28. }
  29. # 访问限制
  30. location /static {
  31. root html;
  32. # allow 允许
  33. allow 39.xxx.xxx.xxx;
  34. # deny 拒绝
  35. deny all;
  36. }
  37. }

PC端和移动端使用不同的项目文件映射

  1. server {
  2. ......
  3. location / {
  4. root /home/static/pc;
  5. if ($http_user_agent ~* '(mobile|android|iphone|ipad|phone)') {
  6. root /home/static/mobile;
  7. }
  8. index index.html;
  9. }
  10. }

一个web服务,配置多个项目 (location 匹配路由区别)

  1. server {
  2. listen 80;
  3. server_name _;
  4. # 主应用
  5. location / {
  6. root html/main;
  7. index index.html;
  8. try_files $uri $uri/ /index.html;
  9. }
  10. # 子应用一
  11. location ^~ /store/ {
  12. proxy_pass http://localhost:8001;
  13. proxy_redirect off;
  14. proxy_set_header Host $host;
  15. proxy_set_header X-Real-IP $remote_addr;
  16. proxy_set_header X-Forwarded-For
  17. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  18. }
  19. # 子应用二
  20. location ^~ /school/ {
  21. proxy_pass http://localhost:8002;
  22. proxy_redirect off;
  23. proxy_set_header Host $host;
  24. proxy_set_header X-Real-IP $remote_addr;
  25. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  26. }
  27. # 静态资源读取不到问题处理
  28. rewrite ^/api/profile/(.*)$ /(替换成正确路径的文件的上一层目录)/$1 last;
  29. }
  30. # 子应用一服务
  31. server {
  32. listen 8001;
  33. server_name _;
  34. location / {
  35. root html/store;
  36. index index.html;
  37. try_files $uri $uri/ /index.html;
  38. }
  39. location ^~ /store/ {
  40. alias html/store/;
  41. index index.html index.htm;
  42. try_files $uri /store/index.html;
  43. }
  44. # 接口代理
  45. location /api {
  46. proxy_pass http://localhost:8089;
  47. }
  48. }
  49. # 子应用二服务
  50. server {
  51. listen 8002;
  52. server_name _;
  53. location / {
  54. root html/school;
  55. index index.html;
  56. try_files $uri $uri/ /index.html;
  57. }
  58. location ^~ /school/ {
  59. alias html/school/;
  60. index index.html index.htm;
  61. try_files $uri /school/index.html;
  62. }
  63. # 接口代理
  64. location /api {
  65. proxy_pass http://localhost:10010;
  66. }
  67. }

配置负载均衡

  1. upstream my_upstream {
  2. server http://localhost:9001;
  3. server http://localhost:9002;
  4. server http://localhost:9003;
  5. }
  6. server {
  7. listen 9000;
  8. server_name test.com;
  9. location / {
  10. proxy_pass my_upstream;
  11. proxy_set_header Host $proxy_host;
  12. proxy_set_header X-Real-IP $remote_addr;
  13. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  14. }
  15. }

SSL 配置 HTTPS

  1. server {
  2. listen 80;
  3. server_name www.xxx.com;
  4. # 将 http 重定向转移到 https
  5. return 301 https://$server_name$request_uri;
  6. }
  7. server {
  8. listen 443 ssl;
  9. server_name www.xxx.com;
  10. ssl_certificate /etc/nginx/ssl/www.xxx.com.pem;
  11. ssl_certificate_key /etc/nginx/ssl/www.xxx.com.key;
  12. ssl_session_timeout 10m;
  13. ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
  14. ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  15. ssl_prefer_server_ciphers on;
  16. location / {
  17. root /project/xxx;
  18. index index.html index.htm index.md;
  19. try_files $uri $uri/ /index.html;
  20. }
  21. }