這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)Docker怎樣部署nginx + tomcat,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
10年積累的網(wǎng)站建設(shè)、成都做網(wǎng)站經(jīng)驗(yàn),可以快速應(yīng)對(duì)客戶對(duì)網(wǎng)站的新想法和需求。提供各種問(wèn)題對(duì)應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識(shí)你,你也不認(rèn)識(shí)我。但先建設(shè)網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有涼城免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。在生產(chǎn)環(huán)境中,很多企業(yè)會(huì)經(jīng)常使用nginx + tomcat 架構(gòu),nginx作為負(fù)載均衡器,反向代理,tomcat作為節(jié)點(diǎn)服務(wù)器。在docker容器中也可以使用這種架構(gòu)。
對(duì)這種架構(gòu)感興趣的可以參考博客:https://blog.51cto.com/13760351/2161850
備注:實(shí)驗(yàn)中已關(guān)閉防火墻,打好企業(yè)使用的war包
可參考博客 https://blog.51cto.com/13760351/2469063
部署及排坑過(guò)程可參考博客 https://blog.51cto.com/13760351/2469305
vim /etc/nginx/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" "$upstream_addr"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65; #gzip on; upstream tomcat { server 47.99.150.153:8088 weight=1; #添加權(quán)重 server 47.99.150.155:8088 weight=1; } server { listen 80; server_name localhost; location / { root /usr/share/nginx/html; index index.html index.htm; } location /admin { proxy_pass http://tomcat; #添加 proxy_redirect off; index index.html index.htm; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-Port $remote_port; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } include /etc/nginx/conf.d/*.conf; }
上述就是小編為大家分享的Docker怎樣部署nginx + tomcat了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道。