首頁  >  問答  >  主體

python - 開發環境下使用 Docker + Gunicorn + Nginx 只能看到 Niginx 歡迎介面

在開發環境下使用 Docker Gunicorn Nginx 來運行 Django,伺服器啟動後只能看到 Nginx 歡迎介面。

Dockerfile 如下:

django:

FROM python:3.5

ENV PYTHONUNBUFFERED 1

RUN groupadd -r django \
    && useradd -r -g django django

COPY ./requirements.txt /requirements.txt
RUN pip install --no-cache-dir -r /requirements.txt \
    && rm -rf /requirements.txt

COPY ./compose/django/gunicorn.sh /
RUN sed -i 's/\r//' /gunicorn.sh \
    && chmod +x /gunicorn.sh \
    && chown django /gunicorn.sh

COPY . /app

RUN chown -R django /app

RUN mkdir /static
RUN chown -R django /static

USER django

WORKDIR /app

nginx:

FROM nginx:latest
ADD nginx.conf /etc/nginx/sites-enabled/django_blog.conf

gunicorn.sh

#!/bin/sh
python /app/manage.py collectstatic --noinput
/usr/local/bin/gunicorn blogproject.wsgi -w 4 -b 127.0.0.1:8000 --chdir=/app

nginx.conf 設定:

server {
    charset utf-8;
    listen 80 default_server;

    location /static {
        alias /app/static;
    }

    location / {
        proxy_pass_header Server;
        proxy_set_header Host $http_host;
        proxy_pass http://127.0.0.1:8000;
    }
}

docker-compose.yml

version: '3'

services:
  django:
    build:
      context: .
      dockerfile: ./compose/django/Dockerfile
    command: /gunicorn.sh

  nginx:
    build: ./compose/nginx
    depends_on:
      - django

    ports:
      - "80:80"

執行指令:
docker-compose build
docker-compose up

似乎是 Nginx 沒有把請求轉發給 Gunicorn?求指點點!

滿天的星座滿天的星座2654 天前976

全部回覆(1)我來回復

  • 滿天的星座

    滿天的星座2017-06-16 09:21:02

    請進入nginx容器看清楚設定檔的位置

    回覆
    0
  • 取消回覆