python - 开发环境下使用 Docker + Gunicorn + Nginx 只能看到 Niginx 欢迎界面
问题描述
在开发环境下使用 Docker + Gunicorn + Nginx 来运行 Django,服务器启动后只能看到 Nginx 欢迎界面。
Dockerfile 如下:
django:
FROM python:3.5ENV PYTHONUNBUFFERED 1RUN groupadd -r django && useradd -r -g django djangoCOPY ./requirements.txt /requirements.txtRUN pip install --no-cache-dir -r /requirements.txt && rm -rf /requirements.txtCOPY ./compose/django/gunicorn.sh /RUN sed -i ’s/r//’ /gunicorn.sh && chmod +x /gunicorn.sh && chown django /gunicorn.shCOPY . /appRUN chown -R django /appRUN mkdir /staticRUN chown -R django /staticUSER djangoWORKDIR /app
nginx:
FROM nginx:latestADD nginx.conf /etc/nginx/sites-enabled/django_blog.conf
gunicorn.sh
#!/bin/shpython /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 builddocker-compose up
似乎是 Nginx 没有把请求转发给 Gunicorn?求指点!
问题解答
回答1:请进入nginx容器看清楚配置文件的位置
相关文章:
1. PHP类中的$this2. python - Django Admin创建不关联任何model的自定义页面3. javascript - h5分享链接到qq或者微信时有一个缩略图还有一些说明文字,这个要怎么去修改里面的图片和内容?4. javascript 如何下载一个excel文件 ?5. 谁有mysql5.7安装的详细教程6. mysql - 看这条sql有可能被注入吗7. python - Django操作数据库遇到问题,无法查询更新后的数据8. 请问是对象还是数组9. android - 第三方App调用高德地图,总是直接进入到导航页面,有没有办法进入首页?10. python2.7 - Python安装模组不成功
