Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It isn't actually too clear what problem you are trying to solve. Why are you even using that configuration in the first place? It looks like you just copied it from mod_wsgi documentation without understanding what each bit does and started using it when it isn't even appropriate for your setup. Specifically that example in mod_wsgi documentation was a generic example and not necessarily suited for Django.</p> <p>So, rather that trying to fix that configuration to meet some unknown goal, just describe what you need and will tell you what the proper configuration is that you should be using.</p> <hr> <p>UPDATE 1</p> <p>Per my comment below, perhaps then use:</p> <pre><code>AliasMatch /tech_eval/([^/]*\.css) /var/www/tech_eval/static/styles/$1 Alias /tech_eval/media/ /var/www/tech_eval/static/media/ &lt;Directory /var/www/tech_eval/static&gt; Order deny,allow Allow from all &lt;/Directory&gt; WSGIScriptAlias /tech_eval /var/www/tech_eval/scripts/django.wsgi &lt;Directory /var/www/tech_eval/scripts&gt; Order allow,deny Allow from all &lt;/Directory&gt; </code></pre> <p>Just ditch robots.txt and favicon.ico, or at least don't get them from sub URL site and just stick them direct in the DocumentRoot directory and use those which truly are for whole of site.</p> <p>I think it is 'ADMIN_MEDIA_PREFIX' in Django settings module that you then need to change to '/tech_eval/media/'.</p> <p>For Django don't think you even need to CSS alias and that is where this was originally a generic example to show concepts rather than be something which was correct for Django.</p> <p>Anyway, everything is then under '/tech_eval' and shouldn't interfere with other applications on same site.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload