我正在使用基于andrecp git的django + nginx - https://github.com/andrecp/django-tutorial-docker-nginx-postgres
这是nginx.conf文件:
worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
gzip on;
gzip_proxied any;
gzip_types text/plain text/xml text/css application/x-javascript;
gzip_vary on;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server {
listen 80;
server_name mysite.com;
client_max_body_size 20M;
charset utf-8;
access_log /dev/stdout;
error_log /dev/stdout info;
location /static {
alias /usr/src/app/static;
}
location /static/myapp/js/ {
default_type text/javascript;
alias /usr/src/app/static/myapp/js/;
}
location /static/myapp/css/ {
default_type text/css;
alias /usr/src/app/static/myapp/css/;
}
location /media {
alias /usr/src/app/media;
}
location / {
proxy_pass http://django:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}
}
}
这是我的模特:
class RSSfeeds(models.Model):
site_name = models.CharField('Site Name', max_length=100)
feed_name = models.CharField('Feed Name', max_length=100)
feed_url = models.CharField('URL', max_length=1000)
img = models.ImageField('Image', upload_to='img/', null=True, blank=True)
我的网站上有一个简单的表单,上面有图片上传输入。 当我在DEBUG = TRUE时,文件按预期上传,但我认为django处理它们而不是Nginx(因为它们被放在django文件夹中)。 当DEBUG = False时没有任何反应 - 我发送表格,文本数据存储正确但图像未保存。
我做错了什么?
谢谢!
更新:
server {
listen 80;
server_name yourserver.com;
client_max_body_size 50M;
charset utf-8;
location /static {
alias /www/static;
}
location /media {
alias /www/media;
}
location / {
proxy_pass http://django:8000;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}
}
答案 0 :(得分:0)
您应确保运行应用程序服务器的用户可写 MEDIA_ROOT 目录。
在您的情况下,应用程序服务器应为Gunicorn。假设运行Gunicorn的用户是www-data,则应确保执行此命令,以使应用程序服务器写入 MEDIA_ROOT 目录。
sudo chown www-data.www-data /www/media
在这里您可以找到有关使用NGINX部署Django的更多信息:https://www.guguweb.com/2019/11/13/django-nginx-deploy-your-django-project-on-a-production-server/