主頁 > 知識庫 > docker nginx 運行后無法訪問的問題解決

docker nginx 運行后無法訪問的問題解決

熱門標簽:福州呼叫中心外呼系統(tǒng)哪家好 地圖標注w是什么方向 臨汾電銷機器人費用 河南省鄭州市地圖標注 七大洲地圖標注 新鄉(xiāng)人工智能電話機器人加盟 400電話申請找哪家公司 昆明外呼系統(tǒng) 地圖標注需要提交啥資料入駐

## 1

最近在學docker部署,一開始打算將nginx先docker化的。

對照官方的docker鏡像介紹說明,進行自定義配置

將官方的nginx.conf復制出來后,修改添加了一些自定義,主要是屏蔽了default.conf,以及include文件夾 sites-available

# include /etc/nginx/conf.d/.conf;
include /etc/nginx/sites-available/;

官方原先配置

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

新建docker-compose.yml 簡單的 指定images,名字,端口,掛載本地文件替代默認

version: '3'
services:
 nginx-proxy:
  image: nginx
  container_name: nginx
  ports:
   - 8081:80
  volumes:
   - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro

## 2

運行docker-compose up 后,一直卡在attaching to nginx,瀏覽器也是無法訪問該端口地址

Starting nginx ... done
Attaching to nginx

不知道問題出在哪里,查找資料后發(fā)現(xiàn)可以使用tty參數(shù)進行調(diào)試。

修改docker-compose.yml,增加一個配置tty:true。

docker exec -it nginx /bin/bash

發(fā)現(xiàn)自己把默認的default.conf刪除后,沒有添加其他的配置文件,之前的sites-available文件夾是空的。

## 3

自己把自己坑了,添加

-./nginx/sites-available:/etc/nginx/sites-available:ro

并在sites-available添加一個配置文件。

/etc/nginx/sites-available# ls
default.conf

運行后,對端口地址訪問終于正常了

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

標簽:???/a> 臨沂 四川 股票 岳陽 烏海 紅河 鎮(zhèn)江

巨人網(wǎng)絡(luò)通訊聲明:本文標題《docker nginx 運行后無法訪問的問題解決》,本文關(guān)鍵詞  docker,nginx,運行,后,無法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《docker nginx 運行后無法訪問的問題解決》相關(guān)的同類信息!
  • 本頁收集關(guān)于docker nginx 運行后無法訪問的問題解決的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章