1. 程式人生 > >用Docker搭建一個支援https的nginx代理服務

用Docker搭建一個支援https的nginx代理服務

GitHub地址: https://github.com/wll-zhou/nginx_proxy_docker   

 

nginx不僅僅是一個高效能的web伺服器軟體,還可以用來做正向代理和反向代理,但是nginx不支援https的正向代理,作者搜尋已有的解決方案,並把最終服務整合到Docker,後續直接通過docker run就能使用了

 

首先說下nginx實現https正向代理,這個用的是別人開發好的ngx_http_proxy_connect_module模組,詳細資料可以參考這篇文章,本文的重點是記錄怎麼整合到Docker裡面

 

首先準備好工作目錄

mkdir -p nginx/workdir && cd nginx/workdir

 

下載指定的nginx版本,對應的ngx_http_proxy_connect_module模組

wget http://nginx.org/download/nginx-1.17.4.tar.gz
git clone https://github.com/chobits/ngx_http_proxy_connect_module.git nginx_proxy

 

返回上一層nginx目錄,開始編寫Dockerfile

 

# 基礎映象,這個用的centos7比較大,一般使用alpine
FROM centos:7
# 安裝基礎依賴工具
RUN yum install -y patch gcc glibc-devel make openssl-devel pcre-devel zlib-devel gd-devel geoip-devel perl-devel
#新增nginx使用者組和使用者,用來啟動nginx的使用者,看自己情況,也有用www啟動的
RUN groupadd -g 101 nginx \
          && adduser  -u 101 -d /var/cache/nginx -s /sbin/nologin  -g nginx nginx 
#拷貝當前workdir目錄到映象中的/workdir
COPY ./workdir /workdir
#切換當前目錄為/workdir
WORKDIR /workdir
#安裝nginx服務(把對應的ngx_http_proxy_connect_module加入)
#安裝完了之後把對應目錄軟體包刪掉
RUN tar -zxvf nginx-1.17.4.tar.gz && cd nginx-1.17.4 \
       && patch -p1 < /workdir/nginx_proxy/patch/proxy_connect_rewrite_101504.patch \
      && ./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-g -O2 -fdebug-prefix-map=/data/builder/debuild/nginx-1.17.1/debian/debuild-base/nginx-1.17.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie' --add-module=/workdir/nginx_proxy \
     && make && make install \
     && cd /workdir && rm -rf /workdir/*
#啟動nginx服務,注意要加後面的-g daemon off,表示關閉守護程序模式
CMD ["nginx", "-g", "daemon off;"]

 

以上就是Dockerfile的全部內容,當前工作目錄結構

.

├── Dockerfile

└── workdir

    ├── nginx-1.17.4.tar.gz

    └── nginx_proxy

 

下面開始build映象,-t表示取的映象名字,後面那個.不能漏了,表示當前目錄,整個過程需要一定時間,視機器的網路情況

docker build -t nginx:proxy_1.17.4 .

 

build成功標識:

Successfully built 5e54788aa240

Successfully tagged nginx:proxy_1.17.4

 

如果失敗的話會有對應提示,按照提示解決即可。

現在image生成了,docker image ls看看是不是已經有nginx:proxy_1.17.4了

 

接下來可以運行了,當然要準備好對應nginx配置文見,把代理的配置加上

 

    server {
        listen                         8888;
        access_log /var/log/nginx/proxy.log; 
        # dns resolver used by forward proxying
        resolver                       8.8.8.8;
        # forward proxy for CONNECT request
        proxy_connect;
        proxy_connect_allow            443 563;
        proxy_connect_connect_timeout  10s;
        proxy_connect_read_timeout     10s;
        proxy_connect_send_timeout     10s;
        # forward proxy for non-CONNECT request
        location / { 
            proxy_pass http://$host;
            proxy_set_header Host $host;
        }   
    }

 

執行映象(對應路徑和埠可以自己設定)

docker run -d -p 8888:8888 -v /home/www/image/nginx/nginx.conf:/etc/nginx/nginx.conf nginx:proxy_1.17.4

 

啟動之後測試下代理是否可用

curl https://www.geek-share.com -v -x 127.0.0.1:8888

 

至此,整合到docker完畢,後續換一個機器,直接把映象拷貝一下,然後docker run就可以了,方便很多

以上服務已經發布到GitHub,clone下來後可以直接執行,當然,自己的機器要已經安裝docker

https://github.com/wll-zhou/nginx_proxy_docker 

 

歡迎指正問題!

 

文章同步釋出: https://www.geek-share.com/detai