可以把多個(gè)域名映射到同一個(gè)IP地址上
獲取 nginx 鏡像
docker pull nginx
docker 鏡像名稱由REPOSITORY和TAG組成 [REPOSITORY[:TAG]]
非竿,TAG默認(rèn)為latest
docker run -p 80:80 --name nginxtest nginx
創(chuàng)建目錄 掛載
在宿主機(jī)創(chuàng)建持久化 conf--配置目錄 html--靜態(tài)網(wǎng)站目錄 logs--日志目錄 cert--存放證書目錄
mkdir -p /docker-root/nginx/conf/conf.d
mkdir -p /docker-root/nginx/html
mkdir -p /docker-root/nginx/logs
mkdir -p /docker-root/nginx/cert #ssl 證書目錄 存放證書 映射到 容器里
將容器內(nèi)的nginx.conf
與default.conf
文件分別拷貝到主機(jī)/mnt/nginx與目錄/mnt/nginx/conf下,分別執(zhí)行
docker cp ef:/etc/nginx/nginx.conf ./
dokcer cp ef:/etc/nginx/conf.d/default.conf ./conf/
conf目錄下創(chuàng)建nginx.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;
include /etc/nginx/conf.d/*.conf;
}
首先要在域名管理中做好域名簡(jiǎn)析
在conf.d目錄下創(chuàng)建 域名為ab.baidu.com的配置文件 ab.baidu.com.conf 文件 包含ssl證書
server {
listen 80;
listen [::]:80;
server_name ab.baidu.com;
#server_name 192.168.1.98
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
#root /usr/share/nginx/html/anenglish #網(wǎng)站目錄 根目錄地址
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /api/ {
#mcyl_test0 容器名稱 反向代理到 后臺(tái)服務(wù)
#proxy_pass http://mcyl_test0:8080/;
proxy_pass http://100.141.209.217:9080/;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
server {
listen 443 ssl; #SSL協(xié)議訪問端口號(hào)為443。此處如未添加ssl起暮,可能會(huì)造成Nginx無(wú)法啟動(dòng)翎卓。
server_name ae.domain.com; #將localhost修改為您證書綁定的域名酌住,例如:www.example.com。
#root html;
#index index.html index.htm;
ssl_certificate /cert/4610037_ae.domain.com.pem; #將domain name.pem替換成您證書的文件名仇哆。
ssl_certificate_key /cert/4610037_ae.domain.com.key; #將domain name.key替換成您證書的密鑰文件名。
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件夫植。
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #使用該協(xié)議進(jìn)行配置讹剔。
ssl_prefer_server_ciphers on;
location / {
root /usr/share/nginx/html/domain;
index index.html index.htm;
}
location /api/ {
#mcyl_test0 容器名稱 反向代理到 后臺(tái)服務(wù)
#proxy_pass http://mcyl_test0:8080/;
proxy_pass http://100.143.229.240:9080/;
}
}
在conf.d目錄下創(chuàng)建 域名為gh.baidu.com的配置文件 gh.baidu.com.conf 文件 包含ssl證書
server {
listen 80;
listen [::]:80;
server_name gh.baidu.com;
#server_name 192.168.1.98
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
#root /usr/share/nginx/html/ghenglish #網(wǎng)站目錄 根目錄地址
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /api/ {
#mcyl_test0 容器名稱 反向代理到 后臺(tái)服務(wù)
#proxy_pass http://mcyl_test0:8080/;
proxy_pass http://100.141.209.217:9081/;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
server {
listen 443 ssl; #SSL協(xié)議訪問端口號(hào)為443。此處如未添加ssl,可能會(huì)造成Nginx無(wú)法啟動(dòng)延欠。
server_name ae.domain.com; #將localhost修改為您證書綁定的域名陌兑,例如:www.example.com。
#root html;
#index index.html index.htm;
ssl_certificate /cert/4610037_ae.domain.com.pem; #將domain name.pem替換成您證書的文件名由捎。
ssl_certificate_key /cert/4610037_ae.domain.com.key; #將domain name.key替換成您證書的密鑰文件名诀紊。
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件。
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #使用該協(xié)議進(jìn)行配置隅俘。
ssl_prefer_server_ciphers on;
location / {
root /usr/share/nginx/html/domain;
index index.html index.htm;
}
location /api/ {
#mcyl_test0 容器名稱 反向代理到 后臺(tái)服務(wù)
#proxy_pass http://mcyl_test0:8080/;
proxy_pass http://100.143.229.240:9080/;
}
}
ginx.conf并沒有在etc/nginx/conf目錄下邻奠。
允許https訪問 的 default.conf 文件
server {
listen 80;
listen [::]:80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /api/ {
#mcyl_test0 容器名稱 反向代理到 后臺(tái)服務(wù)
#proxy_pass http://mcyl_test0:8080/;
proxy_pass http://39.104.76.249:8080/;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
server {
listen 443 ssl; #SSL協(xié)議訪問端口號(hào)為443。此處如未添加ssl为居,可能會(huì)造成Nginx無(wú)法啟動(dòng)碌宴。
server_name www.sxydxkj.cn; #將localhost修改為您證書綁定的域名,例如:www.example.com蒙畴。
#root html;
#index index.html index.htm;
ssl_certificate /cert/4078830_www.sxydxkj.cn.pem; #將domain name.pem替換成您證書的文件名贰镣。
ssl_certificate_key /cert/4078830_www.sxydxkj.cn.key; #將domain name.key替換成您證書的密鑰文件名。
ssl_session_timeout 5m;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #使用此加密套件膳凝。
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #使用該協(xié)議進(jìn)行配置碑隆。
ssl_prefer_server_ciphers on;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /api/ {
#mcyl_test0 容器名稱 反向代理到 后臺(tái)服務(wù)
#proxy_pass http://mcyl_test0:8080/;
proxy_pass http://39.104.76.249:8080/;
}
}
主機(jī)中的文件nginx.conf掛載到容器的nginx.conf
將服務(wù)器的配置文件掛載到容器中,這樣我們修改配置文件會(huì)方便一些蹬音。
退出nginx容器上煤,將容器中的文件nginx.conf先拷貝到宿主機(jī)中,conf.d目錄下的 default.conf 文件拷貝出來(lái)
docker cp nginxtest:/etc/nginx/nginx.conf /root/docker-root/nginx-mcyl/conf/backnginx.conf
將容器中/etc/nginx/nginx.conf文件 復(fù)制到宿主機(jī)的/root/docker-root/nginx-mcyl/conf目錄下著淆,并命名為backnginx.conf
docker cp nginx-mcyl-vue:/etc/nginx/conf.d/default.conf /root/docker-root/nginx-mcyl/conf/conf.d/default.conf
執(zhí)行docker stop ef
命令停止剛剛創(chuàng)建的nginx容器劫狠,ef是容器Id,然后執(zhí)行docker rm ef
移除容器永部,
創(chuàng)建容器
#使用ssl證書 https訪問 多一個(gè)443的端口映射
docker run --name nginx --restart=always -d -p 80:80 -p 443:443 -v /docker-root/nginx/conf/nginx.conf:/etc/nginx/nginx.conf -v /docker-root/nginx/conf/conf.d:/etc/nginx/conf.d -v /docker-root/nginx/logs:/var/log/nginx -v /docker-root/nginx/html:/usr/share/nginx/html -v /docker-root/nginx/cert:/cert/ --network my-net nginx:1.19.2
-v /docker-root/nginx/conf/nginx.conf :/etc/nginx/nginx.conf
/docker-root/nginx/conf/nginx.conf 宿主機(jī)中的ngix配置文件 掛載 到容器的 /etc/nginx/nginx.conf 配置文件
-v /docker-root/nginx/conf/conf.d:/etc/nginx/conf.d
/docker-root/nginx/conf/conf.d 宿主機(jī)中的 配置目錄 conf.d 掛載到 容器的 /etc/nginx/conf.d 目錄上
-v /docker-root/nginx/cert:/cert/
映射ssl 證書文件
命令独泞,重新創(chuàng)建nginx容器
這樣就可以將配置文件、log苔埋、靜態(tài)頁(yè)面映射到宿主機(jī)中懦砂。需要修改或者查看直接在宿主機(jī)中修改或者查看就可以了。需要注意的是组橄,配置文件雖然映射到宿主機(jī)中荞膘,但是如需配置路徑,還需配置成容器中的路徑晨炕。
注意發(fā)布到 云服務(wù)器上 服務(wù)器安全組是否開放了443端口衫画。
vue 使用 Dockerfile 生成鏡像
把 vue 生成的 dist目錄下的文件 上傳到 服務(wù)器
/root/docker-root/vue-mcyl-src
文件目錄 dist 目錄 Dockerfile 文件
轉(zhuǎn)到 此目錄下
cd /root/docker-root/vue-mcyl-src
使用下面的命令 生成鏡像
docker build -t mcyl-vue:v1.0 .
......
Successfully built a3c1ccffb08a
Successfully tagged mcyl-vue:v1.0
啟動(dòng)容器
docker run --name nginx-mcyl-vue -d -p 80:80 -v /root/docker-root/nginx-mcyl/conf/nginx.conf:/etc/nginx/nginx.conf -v /root/docker-root/nginx-mcyl/conf/conf.d:/etc/nginx/conf.d -v /root/docker-root/nginx-mcyl/logs:/var/log/nginx -v /root/docker-root/nginx-mcyl/html:/usr/share/nginx/html --network my-net mcyl-vue:v1.0
docker run -d mcyl-vue:v1.0
conf.d 目錄下的配置文件 default.conf
server {
listen 80;
listen [::]:80;
server_name localhost;
#server_name 192.168.1.98
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /api/ {
#mcyl_test0 容器名稱 反向代理到 后臺(tái)服務(wù)
#proxy_pass http://mcyl_test0:8080/;
proxy_pass http://192.168.1.98:8080/; #反向代理 宿主機(jī)的ip地址 web端口號(hào)
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
其他命令
修改配置文件重啟nginx容器
docker exec -it nginx service nginx reload
查詢docker中nginx容器的日志的前10行
docker logs --tail="10" nginx
docker容器中安裝vim(如果下載不下來(lái),需要配置下國(guó)內(nèi)鏡像)
apt-get update
apt-get install vim
錯(cuò)誤排查
一瓮栗、Docker Nginx 反向代理宿主機(jī)服務(wù) 報(bào)錯(cuò)-- connect() failed (113: No route to host) while connecting to upstream
防火墻原因削罩,需要將通信的端口開放
解決辦法:
firewall-cmd --zone=public --add-port=9080/tcp --permanent
firewall-cmd --zone=public --add-port=8080-8080/tcp
參考 http://www.ttlsa.com/web/multiple-https-host-nginx-with-a-ip-configuration/