当前位置:   article > 正文

nginx如何设置访问路径_nginx配置项目访问路径

nginx配置项目访问路径
  1. vim nginx.conf
  2. #user nobody;
  3. worker_processes 1;
  4. events {
  5. worker_connections 1024;
  6. }
  7. http {
  8. include mime.types;
  9. default_type application/octet-stream;
  10. #upstream myserver { #这里是设置负载均衡的地方!
  11. #server 192.168.23.110:8080;
  12. #server 192.168.23.110:8081;
  13. #}
  14. sendfile on;
  15. keepalive_timeout 65;
  16. server {
  17. listen 80;
  18. server_name localhost;
  19. location / {
  20. #root html; #这里是你设置访问的路径,例如:/home/test/,html的路径在:/usr/local/nginx/html/里面(你需要把前端dist包放到/usr/local/nginx/html/下面)
  21. root /home/test; #你需要把前端dist包放到/home/test/下面
  22. index index.html index.htm;
  23. #proxy_pass http://myserver; #这里是上面设置负载均衡跳转的地方
  24. }
  25. error_page 500 502 503 504 /50x.html;
  26. location = /50x.html {
  27. root html;
  28. }
  29. }
  30. }

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号