vue项目部署到nginx Published on May 12, 2023 in Java随笔教程 with 0 comment nginx.conf: ``` user root; worker_processes 1 events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root /home/ubuntu/myapp/ruoyi/ruoyi-ui/dist; # 路径改成自己的dist路径 try_files $uri $uri/ /index.html; index index.html index.htm; } location /prod-api/{ proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://localhost:8080/; #设置监控后端启动的端口 } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } ``` 启动nginx: ``` /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf ``` 重启: ``` /usr/local/nginx/sbin/nginx -s reload ``` 查看nginx进程是否启动: ``` ps -ef | grep nginx ``` 杀进程: ``` kill -9 pid ``` jar包后台启动: ``` nohup java -jar xxx.jar >log.out & ``` 本文由 admin 创作,采用 知识共享署名4.0 国际许可协议进行许可。本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名。