通过以下展示不同情况下的配置:location 路径、root 路径、alias 路径、proxy_pass 代理路径 然后对比这几个配置路径地址,建议 location 后面都带上斜杠。

基础配置说明

  1. # 进程数量
  2. worker_processes 1;
  3. events {
  4. # 最大连接数量
  5. worker_connections 1024;
  6. }
  7. http {
  8. include mime.types;
  9. default_type application/octet-stream;
  10. sendfile on;
  11. keepalive_timeout 65;

强制http跳转https

  1. server {
  2. listen 80;
  3. server_name test.com;
  4. # http强制跳转到https
  5. rewrite ^(.*)$ https://$server_name$1 permanent;
  6. }

配置微信支付的校验文件

  1. server {
  2. listen 80;
  3. server_name localhost;
  4. # 默认根路径
  5. location / {
  6. root index.html;
  7. }
  8. # 微信支付校验文件,可以直接配置访问名称
  9. location ^~/MP_verify_2g3uEjrB5B2LIbNl.txt {
  10. alias /home/MP_verify_2g3uEjrB5B2LIbNl.txt;
  11. }
  12. # 微信支付校验文件,也可以通过正则配置
  13. location ~^/MP_verify_[a-zA-Z0-9]*\.(txt)$ {
  14. root /home/;
  15. rewrite ^/home/(.txt)$ /home/$1 last;
  16. }
  17. }

root和alias两种配置静态资源的区别

  1. server {
  2. listen 80;
  3. server_name localhost;
  4. # 用root方式,location中的路径会拼加到root的地址后面
  5. # 请求路径为:http://localhost:8080/files/index.jpg 实际访问为:/home/files/index.jpg
  6. location ~^/files/ {
  7. root /home/;
  8. index index.html index.htm;
  9. }
  10. # 用alias方式,location中的路径不会拼加到alias的地址后面
  11. # 这请求路径为:http://localhost:8080/files/index.jpg 实际访问为:/home/index.jpg
  12. location ~^/files/ {
  13. alias /home/;
  14. index index.html index.htm;
  15. }
  16. }

请求后台接口代理配置

  1. server {
  2. listen 8080;
  3. server_name localhost;
  4. #################### 第一种场景(代理地址不加斜杠) ####################
  5. # 请求路径为:http://127.0.0.1:8080/api/getUser 实际代理为:http://127.0.0.1:8000/api/getUser
  6. location ^~/api/ {
  7. proxy_pass http://127.0.0.1:8000;
  8. proxy_set_header Host $http_host; #后台可以获取到完整的ip+端口号
  9. proxy_set_header X-Real-IP $remote_addr; #后台可以获取到用户访问的真实ip地址
  10. }
  11. # 请求路径为:http://127.0.0.1:8080/api/getUser 实际指向为:http://127.0.0.1:8000/api/getUser
  12. location ^~/api {
  13. proxy_pass http://127.0.0.1:8000;
  14. proxy_set_header Host $http_host; #后台可以获取到完整的ip+端口号
  15. proxy_set_header X-Real-IP $remote_addr; #后台可以获取到用户访问的真实ip地址
  16. }
  17. #################### 第二种场景(代理地址+斜杠) ####################
  18. # 请求路径为:http://127.0.0.1:8080/api/getUser 实际代理为:http://127.0.0.1:8000/getUser
  19. location ^~/api/ {
  20. proxy_pass http://127.0.0.1:8000/;
  21. proxy_set_header Host $http_host; #后台可以获取到完整的ip+端口号
  22. proxy_set_header X-Real-IP $remote_addr; #后台可以获取到用户访问的真实ip地址
  23. }
  24. # 请求路径为:http://127.0.0.1:8080/api/getUser 实际代理为:http://127.0.0.1:8000//getUser
  25. location ^~/api {
  26. proxy_pass http://127.0.0.1:8000/;
  27. proxy_set_header Host $http_host; #后台可以获取到完整的ip+端口号
  28. proxy_set_header X-Real-IP $remote_addr; #后台可以获取到用户访问的真实ip地址
  29. }
  30. #################### 第三种场景(代理地址+后缀) ####################
  31. # 请求路径为:http://127.0.0.1:8080/api/getUser 实际代理为:http://127.0.0.1:8000/user/getUser
  32. location ^~/api {
  33. proxy_pass http://127.0.0.1:8000/user;
  34. proxy_set_header Host $http_host; #后台可以获取到完整的ip+端口号
  35. proxy_set_header X-Real-IP $remote_addr; #后台可以获取到用户访问的真实ip地址
  36. }
  37. # 请求路径为:http://127.0.0.1:8080/api/getUser 实际代理为:http://127.0.0.1:8000/usergetUser
  38. location ^~/api/ {
  39. proxy_pass http://127.0.0.1:8000/user;
  40. proxy_set_header Host $http_host; #后台可以获取到完整的ip+端口号
  41. proxy_set_header X-Real-IP $remote_addr; #后台可以获取到用户访问的真实ip地址
  42. }
  43. #################### 第四种场景(代理地址+后缀+斜杠) ####################
  44. # 请求路径为:http://127.0.0.1:8080/api/getUser 实际代理为:http://127.0.0.1:8000/user/getUser
  45. location ^~/api/ {
  46. proxy_pass http://127.0.0.1:8000/user/;
  47. proxy_set_header Host $http_host; #后台可以获取到完整的ip+端口号
  48. proxy_set_header X-Real-IP $remote_addr; #后台可以获取到用户访问的真实ip地址
  49. }
  50. # 请求路径为:http://127.0.0.1:8080/api/getUser 实际代理为:http://127.0.0.1:8000/user//getUser
  51. location ^~/api {
  52. proxy_pass http://127.0.0.1:8000/user/;
  53. proxy_set_header Host $http_host; #后台可以获取到完整的ip+端口号
  54. proxy_set_header X-Real-IP $remote_addr; #后台可以获取到用户访问的真实ip地址
  55. }
  56. }

前端项目如何部署Nginx

  1. server {
  2. listen 8090;
  3. server_name localhost;
  4. # 默认访问
  5. # 部署路径:/home/web/my_demo
  6. # 访问路径为:http://localhost:8090/
  7. location / {
  8. try_files $uri $uri/ /index.html;
  9. proxy_set_header X-Real-IP $remote_addr;
  10. proxy_set_header Host $http_host;
  11. root /home/web/my_demo/;
  12. index index.html index.htm;
  13. }
  14. # 带前缀的访问
  15. # 部署路径:/home/web/my_demo
  16. # 访问路径为:http://localhost:8090/my_demo/
  17. # 如果location路径最后没有配置斜杠,则浏览器输入访问地址后,路径最后会自动拼一个斜杠
  18. location ^~/my_demo/ {
  19. try_files $uri $uri/ /my_demo/index.html;
  20. proxy_set_header X-Real-IP $remote_addr;
  21. proxy_set_header Host $http_host;
  22. root /home/web/;
  23. index index.html index.htm;
  24. }
  25. }
  26. }

注意这几个 Nginx 不同访问路径和代理的配置,注意有加斜杠和不加的区别。