我正在使用Apache来托管我的主网站,并将django项目随之搁置。
1.Apache proxypass
配置为侦听8001端口,只要proxypassReverse
settings.py
中的,django.contrib.staticfiles
已添加到INSTALLED_APPS
STATIC_ROOT设置为os.path.join(BASE_DIR, 'static')
,其中BASE_DIR是我项目的绝对路径
STATIC_URL is set to '/static/'
操作python manage.py collectstatic
已经执行,名为“static”的文件在我的项目文件夹中
无法获取css文件的页面为www.whiletrue.cc/paradox/admin
这是我的apache httpd.conf设置:
ProxyPass /paradox http://localhost:8001/paradox
ProxyPassReverse /paradox http://localhost:8001/paradox
Alias "/static/" "/home/paradox/JS_django/Entry/static"