我正在尝试让我的Django后端运行,我已经使用以下内容设置了Apache:
<VirtualHost *:80>
ServerName imstephanieday.domain
DocumentRoot /srv/www/imstephanieday
<Directory /srv/www/imstephanieday/blog>
<Files wsgi.py>
Order deny,allow
Allow from all
Options FollowSymLinks Indexes
</Files>
</Directory>
WSGIScriptAlias / /srv/www/imstephanieday/apache/django.wsgi
</VirtualHost>
我在
之间创建了一个符号链接/usr/local/lib/python2.7/dist-packages/django/contrib/admin/static/admin
和
/srv/www/imstephanieday/blog/admin
我也曾在/ blog之外尝试过但仍无济于事
更新:我可以看到管理界面的css / js等文件列表,但没有实际的管理界面
有人可以对此有所了解吗? 非常感谢。