使用 nginx 部署 django
Posted
技术标签:
【中文标题】使用 nginx 部署 django【英文标题】:Deployment of django using nginx 【发布时间】:2018-01-18 13:03:50 【问题描述】:我正在使用 django 1.11。
我已经在服务器上设置了所有内容,我的网站工作正常,问题是静态文件。我看到没有任何css
或js
的django 管理面板。
我在settings.py
中的设置:
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
我运行collectstatic
并在home/user/myproj/static
得到它们
这是我的nginx.conf
文件:
server
listen 8000;
server_name my ip
access_log /var/log/nginx/example.log;
location /static
root home/user/myproj;
我还检查了 django-static-file-and-nginx 和 django-serving-static-files-through-nginx ,并尝试了 1000 次。它仍然在没有 CSS 的情况下加载。 谁能帮帮我?
这是我完整的nginx.conf
文件:
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events
worker_connections 768;
# multi_accept on;
server
listen 8000;
server_name my ip
access_log /var/log/nginx/example.log;
location /static/
root /home/user/myproj/static;
http
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# SSL Settings
##
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
【问题讨论】:
当您请求静态文件时,nginx 访问和错误日志说明了什么? 【参考方案1】:如下更改你的 nginx.conf:
location /static/
root /home/user/myproj/static;
NginX 会将客户端的请求 /static/
路由到与 STATIC_ROOT = os.path.join(BASE_DIR, 'static')
相同的静态文件服务
注意:url 应该是
/yoururl/
并且位置应该是绝对的,比如/home/user/proj/static
【讨论】:
@mehrdad-pedramfar 上传完整的 nginx.conf 文件以帮助您:)以上是关于使用 nginx 部署 django的主要内容,如果未能解决你的问题,请参考以下文章
使用 Gunicorn 和 nginx 部署 Django 项目
使用 Nginx、Gunicorn 和 Supervisor 部署 Django
使用 nginx、django、daphne 部署到 docker