我的django站点用户端的静态文件运行良好,但不知道为什么所有的管理面板静态文件都不工作。虽然它的工作正常,但不与linux任何想法??
nginx .conf文件
upstream sample_project_server {
# fail_timeout=0 means we always retry an upstream even if it failed
# to return a good HTTP response (in case the Unicorn master nukes a
# single worker for timing out).
server unix:/home/me/SPEnv/run/gunicorn.sock fail_timeout=0;
}
server {
listen 800;
server_name <your domain name>;
client_max_body_size 4G;
access_log /home/me/logs/nginx-access.log;
error_log /home/me/logs/nginx-error.log;
location /static {
root /home/me/DjangoProjects/SP/SP;
}
location / {
# an HTTP header important enough to have its own Wikipedia entry:
# http://en.wikipedia.org/wiki/X-Forwarded-For
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# enable this if and only if you use HTTPS, this helps Rack
# set the proper protocol for doing redirects:
# proxy_set_header X-Forwarded-Proto https;
# pass the Host: header from the client right along so redirects
# can be set properly within the Rack application
proxy_set_header Host $http_host;
# we don't want nginx trying to do something clever with
# redirects, we set the Host: header above already.
proxy_redirect off;
# set "proxy_buffering off" *only* for Rainbows! when doing
# Comet/long-poll stuff. It's also safe to set if you're
# using only serving fast clients with Unicorn + nginx.
# Otherwise you _want_ nginx to buffer responses to slow
# clients, really.
# proxy_buffering off;
# Try to serve static files from nginx, no point in making an
# *application* server like Unicorn/Rainbows! serve static files.
if (!-f $request_filename) {
proxy_pass http://sample_project_server;
break;
}
}
# Error pages
error_page 500 502 503 504 /500.html;
location = /500.html {
root /home/me/DjangoProjects/SP/SP;
}
}
和settings.py
静态文件(CSS、JavaScript、Images)
https://docs.djangoproject.com/en/1.8/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = '/home/me/DjangoProjects/SP/SP/static/'
STATICFILES_DIRS = (
# os.path.join(BASE_DIR, 'SP','static/admin'),
'/home/me/DjangoProjects/SP/SP/static/',
'/home/me/SPEnv/lib/python2.7/site-packages/django/contrib/admin/static'
)
3条答案
按热度按时间cwtwac6a1#
在运行
collectstatic
之前,需要将管理静态文件的目录添加到STATICFILES_DIRS列表中。就像这样:其中第一个条目是应用静态文件的路径,第二个是django admin包的位置。
nlejzf6q2#
要解决这个问题,可以使用whitenose
使用pip安装:
然后将这一行“whitenoise.runserver_nostatic”添加到您的Installed_apps设置文件中。
同时将'whitenoise.middleware. WhiteNoiseMiddleware'添加到您的设置文件的中间件中。
运行后:
现在你可以重新启动nginx,gunicor...
sycxhyv73#
我也有同样的问题。我在Centos 7.6上的nginx服务器无法访问路径
/home/user/app/mysyte/static/
中的静态文件夹。在/var/log/nginx/error.log
中出现相同错误为了解决和理解这个问题
:=*
1.运行命令
getenforce
1.如果强制执行-
cat /var/log/audit/audit.log | grep nginx
对于我来说,带errors的字符串看起来像
复制审核消息的ID
1558033633.723:201
1.运行命令
grep yours_audit_id /var/log/audit/audit.log | audit2why
为我输出
因此,正如您在这里看到的答案
setsebool -P httpd_read_user_content 1
,当您运行此命令时,您将看到静态内容