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

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

Dockernginx怎么安裝與配置掛載

這篇“Docker nginx怎么安裝與配置掛載”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“Docker nginx怎么安裝與配置掛載”文章吧。

創(chuàng)新互聯(lián)是一家以網(wǎng)絡(luò)技術(shù)公司,為中小企業(yè)提供網(wǎng)站維護(hù)、網(wǎng)站制作、做網(wǎng)站、網(wǎng)站備案、服務(wù)器租用、域名與空間、軟件開發(fā)、成都小程序開發(fā)等企業(yè)互聯(lián)網(wǎng)相關(guān)業(yè)務(wù),是一家有著豐富的互聯(lián)網(wǎng)運(yùn)營(yíng)推廣經(jīng)驗(yàn)的科技公司,有著多年的網(wǎng)站建站經(jīng)驗(yàn),致力于幫助中小企業(yè)在互聯(lián)網(wǎng)讓打出自已的品牌和口碑,讓企業(yè)在互聯(lián)網(wǎng)上打開一個(gè)面向全國(guó)乃至全球的業(yè)務(wù)窗口:建站歡迎聯(lián)系:13518219792

在docker下載nginx鏡像

docker pull nginx
docker images

Docker nginx怎么安裝與配置掛載

創(chuàng)建掛載目錄

mkdir -p /data/nginx/{conf,conf.d,html,logs}

Docker nginx怎么安裝與配置掛載

編寫nginx,conf配置文件,并放在文件夾中

# for more information on configuration, see:
#  * official english documentation: http://nginx.org/en/docs/
#  * official russian documentation: http://nginx.org/ru/docs/

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# load dynamic modules. see /usr/share/nginx/readme.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
  worker_connections 1024;
}

http {
  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;
  tcp_nodelay     on;
  keepalive_timeout  65;
  types_hash_max_size 2048;

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

  # load modular configuration files from the /etc/nginx/conf.d directory.
  # see http://nginx.org/en/docs/ngx_core_module.html#include
  # for more information.
  include /etc/nginx/conf.d/*.conf;

  server {
    listen    80 default_server;
    listen    [::]:80 default_server;
    server_name 182.254.161.54;
    root     /usr/share/nginx/html;

    # load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;

    location / {
    proxy_pass http://pic; 
    }

    error_page 404 /404.html;
      location = /40x.html {
    }

    error_page 500 502 503 504 /50x.html;
      location = /50x.html {
    }
  }

  upstream pic{
        server 182.254.161.54:8088 weight=5;
        server 182.254.161.54:8089 weight=5;
  }

}

啟動(dòng)容器

復(fù)制代碼 代碼如下:

docker run --name mynginx -d -p 82:80  -v /data/nginx/conf/nginx.conf:/etc/nginx/nginx.conf  -v /data/nginx/logs:/var/log/nginx -d docker.io/nginx

查看啟動(dòng)的容器

docker ps

Docker nginx怎么安裝與配置掛載

先前已經(jīng)在docker部署兩個(gè)tomcat,一個(gè)是8088端口,另一個(gè)是8089端口,并進(jìn)入兩個(gè)容器里編寫了簡(jiǎn)單的頁(yè)面

Docker nginx怎么安裝與配置掛載

訪問8088端口

Docker nginx怎么安裝與配置掛載

訪問8089端口

Docker nginx怎么安裝與配置掛載

現(xiàn)在通過nginx訪問兩個(gè)tomcat的內(nèi)容,實(shí)現(xiàn)負(fù)載均衡的功能,出于區(qū)別,更能體現(xiàn)負(fù)載均衡的功能,兩個(gè)頁(yè)面的內(nèi)容不一樣,但是訪問路徑都一樣,只是通過nginx反向代理去輪換訪問

Docker nginx怎么安裝與配置掛載

Docker nginx怎么安裝與配置掛載

以上就是關(guān)于“Docker nginx怎么安裝與配置掛載”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


名稱欄目:Dockernginx怎么安裝與配置掛載
本文URL:http://weahome.cn/article/gddsho.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部