docker 搭载nginx 服务https,dockernginx


 docker run -d -p 80:80 -p 8443:443 -v /home/server/nginx/config/nginx.conf:/etc/nginx/nginx.conf -v /home/server/nginx/html:/usr/share/nginx/html -v /home/server/nginx/log:/var/log/nginx -v/home/server/nginx/cert:/etc/nginx/cert --restart always --name five-nginx hub.c.163.com/library/nginx



docker run --name five-server -d -p 8080:8080 -v ~/five-server/webapps:/usr/local/tomcat/webapps --restart always hub.c.163.com/library/tomcat

添加时区同步

docker run --name five-server -d -p 8080:8080 -v /etc/timezone:/etc/timezone:ro -v ~/five-server/webapps:/usr/local/tomcat/webapps --restart always hub.c.163.com/library/tomcat

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  ' -  [] "" '
                      '  "" '
                      '"" ""';

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

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;



server {
    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;
    }

    # 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;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}
server { 
listen 80; 
server_name subscribe.waiqin123.com; 

location / { 
index index.html; 
root   /usr/share/nginx/subscribe/; 
} 
}



server { 
    listen 80; 
    server_name manager.waiqin123.com; 
    location / { 
        index index.html; 
        root /usr/share/nginx/manager/; 
        try_files $uri $uri/ /index.html;
    } 
    error_page   500 502 503 504  /50x.html; 
    location = /50x.html {
        root /usr/share/nginx/manager/; 
        }
}


upstream tomcatserver1 {
    server 39.108.186.40:8080;
}

server {
        listen       80;
        server_name  server.waiqin123.com; 

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            proxy_pass   http://tomcatserver1;
            index  index.html index.htm;
        add_header Access-Control-Allow-Origin "*";
        }     
    }


}


2.添加https 的方式。


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;

    server {
        listen       443 ssl;
        server_name  manager.diwuqu.vip;

        ssl on;
        ssl_certificate      cert/manager_ssl/214569428850833.pem;
        ssl_certificate_key  cert/manager_ssl/214569428850833.key;
        ssl_session_cache    shared:SSL:20m;
        ssl_session_timeout  60m;
        ssl_ciphers          ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols        TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;

        #charset koi8-r;
        #access_log  /var/log/nginx/host.access.log  main;

        location / {
            root   /usr/share/nginx/html/manager;
            index  index.html index.htm;
            try_files $uri $uri/ /index.html; 
        }

        #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;
        }
    }

    server {
        listen       443 ssl;
        server_name  subscribe.waiqin123.com;

        ssl on;
        ssl_certificate      cert/subscribe_ssl/1522480550384.pem;
        ssl_certificate_key  cert/subscribe_ssl/1522480550384.key;
        ssl_session_cache    shared:SSL:20m;
        ssl_session_timeout  60m;
        ssl_ciphers          ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols        TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;

        #charset koi8-r;
        #access_log  /var/log/nginx/host.access.log  main;

        location / {
            root   /usr/share/nginx/html/subscribe;
            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;
        }
    }

    server {
        listen       80;
        server_name  www.diwuqu.vip;

        #charset koi8-r;
        #access_log  /var/log/nginx/host.access.log  main;

        location / {
            root   /usr/share/nginx/html/www;
            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;
        }
    }

    server {
        listen       443 http2 ssl;
        server_name  server.diwuqu.vip;

        #charset koi8-r;
        #access_log  /var/log/nginx/host.access.log  main;

        ssl on;
        ssl_certificate      cert/api_ssl/214569480540833.pem;
        ssl_certificate_key  cert/api_ssl/214569480540833.key;
        ssl_session_cache    shared:SSL:20m;
        ssl_session_timeout  60m;
        ssl_ciphers          ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
        ssl_protocols        TLSv1 TLSv1.1 TLSv1.2;
        ssl_prefer_server_ciphers on;

        location / {
            proxy_pass http://39.108.186.40:8080/;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header REMOTE-HOST $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }

        #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;
        }
    }
}

以下是vue 中的nginx 相关配置参考

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  ' -  [] "" '
                      '  "" '
                      '"" ""';

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

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;

    include /etc/nginx/conf.d/*.conf;

server {
    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;
    }

    # 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;
    #    include        fastcgi_params;
    #}

    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}



server { 
    listen 80; 
    server_name 119.23.227.117; 
    location / { 
        index index.html; 
        root /usr/share/nginx/manager/; 
        try_files $uri $uri/ /index.html;
    } 
    error_page   500 502 503 504  /50x.html; 
    location = /50x.html {
        root /usr/share/nginx/manager/; 
        }
}




}

相关内容

    暂无相关文章