静的コンテンツを指す静的専用アプリを作成していません。静的コンテンツは、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