您还没有创建一个仅限静态的应用程序来指向您的静态内容。静态内容将由 nginx 前端服务器呈现。
以下是步骤-
In the control panel, create a new app
即作为“到静态应用程序的符号链接”使用
/home/username/webapps/askbot_server/myask/static 作为符号链接路径。
Add the symlink app to your askbot site using '/m' as the URL path.
然后,
编辑 /home/username/webapps/askbot_server/apache2/conf/httpd.conf 将其更改为 -
<Directory /home/username/webapps/askbot_server/htdocs>
AddHandler wsgi-script .py
</Directory>
to
WSGIScriptAlias / /home/username/webapps/askbot_server/myask/django.wsgi
Restart your Apache with /home/username/webapps/askbot_server/apache2/bin/restart
此外,如果您使用 posgresql 作为数据库,启用全文搜索然后运行
python manage.py init_postgresql_full_text_search