真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

dockernginx服務(wù)如何部署

這篇文章主要講解了“docker nginx服務(wù)如何部署”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“docker nginx服務(wù)如何部署”吧!

創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)與策劃設(shè)計(jì),雁塔網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)10多年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:雁塔等地區(qū)。雁塔做網(wǎng)站價(jià)格咨詢:18980820575

1.下載nginx
docker pull nginx 

2.啟動(dòng)nginx

docker run -d -m 2g -p 8888:80 --name lyjng nginx

3.配置映射

創(chuàng)建目錄:  mkdir -p  /root/lyjnginx/nginx/www /root/lyjnginx/nginx/logs /root/lyjnginx/nginx/conf

其中:

      www: 目錄將映射為 nginx 容器配置的虛擬目錄。
      logs: 目錄將映射為 nginx 容器的日志目錄。
      conf: 目錄里的配置文件將映射為 nginx 容器的配置文件。

4.復(fù)制docker容器中的文件

[root@ambari-01 lyjnginx]# docker ps 
CONTAINER ID   IMAGE     COMMAND                  CREATED          STATUS          PORTS                  NAMES
cf7da4042664   nginx     "/docker-entrypoint.…"   20 minutes ago   Up 20 minutes   0.0.0.0:8888->80/tcp   lyjng
[root@ambari-01 lyjnginx]# docker cp cf7da4042664:/etc/nginx/nginx.conf /root/lyjnginx/nginx/conf/

5.部署命令

docker run -m 2g --rm -d -p 8889:80 --name nginx-test-web   -v /root/lyjnginx/nginx/www:/usr/share/nginx/html   -v /root/lyjnginx/nginx/conf/nginx.conf:/etc/nginx/nginx.conf   -v /root/lyjnginx/nginx/logs:/var/log/nginx   nginx

命令說明:

       -m : 設(shè)置容器占用內(nèi)存
      --rm:容器終止運(yùn)行后,自動(dòng)刪除容器文件。
      -p 8889:80: 將容器的 80 端口映射到主機(jī)的8889端口.
      --name nginx-test-web:將容器命名為 nginx-test-web 
      -v /root/lyjnginx/nginx/www:/usr/share/nginx/html:將我們自己創(chuàng)建的 www 目錄掛載到容器的 /usr/share/nginx/html。
      -v /root/lyjnginx/nginx/conf/nginx.conf:/etc/nginx/nginx.conf:將我們自己創(chuàng)建的 nginx.conf 掛載到容器的 /etc/nginx/nginx.conf。
      -v /root/lyjnginx/nginx/logs:/var/log/nginx:將我們自己創(chuàng)建的 logs 掛載到容器的 /var/log/nginx。

6.添加網(wǎng)頁 將vue打包的文件復(fù)制到/root/lyjnginx/nginx/www/ 這個(gè)目錄下就能訪問了

[root@ambari-01 conf]# cd /root/lyjnginx/nginx/www/
[root@ambari-01 www]# vim index.html





Nginx test !!!


    

我的第一個(gè)標(biāo)題

    

我的第一個(gè)段落。

7.問題nginx代理轉(zhuǎn)發(fā)一致報(bào)404不生效問題

vim  /root/lyjnginx/nginx/conf/nginx.conf 這個(gè)配置文件注釋掉# include /etc/nginx/conf.d/*.conf;

# 這行必須注釋否則/etc/nginx/conf.d/*.conf 會(huì)覆蓋下面server{}中的配置
   # include /etc/nginx/conf.d/*.conf;

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;
   # 這行必須注釋否則/etc/nginx/conf.d/*.conf 會(huì)覆蓋下面server{}中的配置
   # include /etc/nginx/conf.d/*.conf;
    #lyj add
     server {
          listen       80;
          server_name  localhost;
  
          location / {
             # root   /root/lyjnginx/bigdata_product;
	      root    /usr/share/nginx/html;
              index  index.html index.htm;
          }
          location /prod-api/ {
               proxy_pass http://192.168.3.175:8002/;
          }
          location /prod-api-extract/ {
                 proxy_pass http://192.168.1.134:8003/;
          }
           location /prod-api-dataxJ/ {
                proxy_pass http://192.168.3.173:8008/;
          }
           location /prod-api-datax/ {
                 proxy_pass http://192.168.1.134:9527/;
          }
       }
    #lyj add

}

感謝各位的閱讀,以上就是“docker nginx服務(wù)如何部署”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)docker nginx服務(wù)如何部署這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


本文名稱:dockernginx服務(wù)如何部署
轉(zhuǎn)載來于:http://weahome.cn/article/jpsssj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部