用户使用Nginx和Docker上传

时间:2018-11-01 12:07:23

标签: django docker nginx docker-compose docker-volume

我有一个Django应用程序,用户可以在其中上传包含想要在应用程序中显示的数据的文件。该应用使用docker进行了容器化。在生产中,我正在尝试配置nginx使其正常工作,据我所知它在某种程度上可以正常工作。

据我所知,确实在容器中看到了文件的上传,我也可以从应用程序下载文件。我遇到的问题是,一旦提交了表单,就应该将其重定向到另一个表单,用户可以在其中将内容分配给应用程序中的数据(与问题无关)。但是,我却收到500错误。

我看了看nginx错误日志,发现:

[info] 8#8: *11 client closed connection while waiting for request, client: 192.168.0.1, server: 0.0.0.0:443

[info] 8#8: *14 client timed out (110: Operation timed out) while waiting for request, client: 192.168.0.1, server: 0.0.0.0:443

执行操作时。

我还希望媒体文件能够持久保存,以便它们位于docker卷中。

我怀疑第一条日志消息可能是罪魁祸首,但是有什么办法可以防止这种情况的发生,或者仅仅是我的连接不好?

这是我的nginx conf:

user  nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log debug;
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;

    proxy_headers_hash_bucket_size  52;

    client_body_buffer_size 1M;
    client_max_body_size 10M;

    gzip  on;

    upstream app {
        server django:5000;
    }

    server {
        listen 80 default_server;
        listen [::]:80 default_server;
        server_name dali.vpt.co.uk;

        location / {
            return 301 https://$server_name$request_uri;
        }
    }

    server {
        listen 443 ssl;
        listen [::]:443 ssl;
        server_name dali.vpt.co.uk;

        ssl_certificate /etc/nginx/ssl/cert.crt;
        ssl_certificate_key /etc/nginx/ssl/cert.key;

        location / {
            # checks for static file, if not found proxy to app
            try_files $uri @proxy_to_app;
        }

        # cookiecutter-django app
        location @proxy_to_app {
            proxy_set_header X-Forwarded-Proto https;
            proxy_set_header X-Url-Scheme $scheme;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_redirect off;

            proxy_pass   http://app;
        }

        location /media/ {
            autoindex on;
            alias /app/tdabc/media/;
        }

    }

}

这是我的docker-compose文件:

version: '2'

volumes:
  production_postgres_data: {}
  production_postgres_backups: {}
  production_media: {}

services:
  django: &django
    build:
      context: .
      dockerfile: ./compose/production/django/Dockerfile
    image: production_django:0.0.1
    depends_on:
      - postgres
      - redis
    volumes:
      - .:/app
      - production_media:/app/tdabc/media
    env_file:
      - ./.envs/.production/.django
      - ./.envs/.production/.postgres
    command: /start.sh

  postgres:
    build:
      context: .
      dockerfile: ./compose/production/postgres/Dockerfile
    image: production_postgres:0.0.1
    volumes:
      - production_postgres_data:/var/lib/postgresql/data
      - production_postgres_backups:/backups
    env_file:
      - ./.envs/.production/.postgres

  nginx:
    build:
      context: .
      dockerfile: ./compose/production/nginx/Dockerfile
    image: production_nginx:0.0.1
    depends_on:
      - django
    volumes:
        - production_media:/app/tdabc/media
    ports:
      - "0.0.0.0:80:80"
      - "0.0.0.0:443:443"

对于此问题的任何帮助或见解,将不胜感激。

感谢您的时间。

更新 我应该提到的另一件事是,当我使用生产设置运行应用程序但将DEBUG设置为True时,它可以正常运行,但这仅在DEBUG设置为false时才会发生。

0 个答案:

没有答案