对部署_nginx_pm2_docker的研究 2

Posted 又回到了起点

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对部署_nginx_pm2_docker的研究 2相关的知识,希望对你有一定的参考价值。

 
      nginx 反向代理 + 前端打包Dist
       
     
      yum install nginx
       ----
      apt update
      apt install nginx
     添加静态路由
# /etc/nginx/sites-enable/taro 
server {
listen 80;
server_name taro.josephxia.com;
location / {
root /root/source/taro-node/dist;
index index.html index.htm;
}
}
# 验证Nginx配置
nginx -t
# 重新启动Nginx
service nginx restart
nginx -s reload
# /etc/nginx/sites-enable
# taro
# /etc/nginx/sites-enable
# taro
server {
listen 80;
server_name taro.josephxia.com;
location / {
root /root/source/taro-node/dist;
index index.html index.htm;
}
location ~ .(gif|jpg|png)$ {
root /root/source/taro-node/server/static;
}
location /api {
proxy_pass http://127.0.0.1:3000;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
# 查看配置?件位置
nginx -t
# nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
# nginx: configuration file /etc/nginx/nginx.conf test is successful
#重启
service nginx restart
nginx -reload
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

以上是关于对部署_nginx_pm2_docker的研究 2的主要内容,如果未能解决你的问题,请参考以下文章

基于Docker搭建大数据集群Mlsql部署

centos7安装部署docker容器

Docker-compose部署gitlab中文版

EdgeX(11) :通过研究openvino项目发现一个好东西,CVAT项目数据标注工具,可以使用docker-compose进行本地部署,本地局域网中使用,也非常安全

EdgeX(11) :通过研究openvino项目发现一个好东西,CVAT项目数据标注工具,可以使用docker-compose进行本地部署,本地局域网中使用,也非常安全

EdgeX(11) :通过研究openvino项目发现一个好东西,CVAT项目数据标注工具,可以使用docker-compose进行本地部署,本地局域网中使用,也非常安全