Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Your <code>django.wsgi</code> file,</p> <pre><code>WSGIScriptAlias / /srv/http/wsgi-scripts/django.wsgi </code></pre> <p>is outside of the <code>&lt;Directory&gt;</code> defined by:</p> <pre><code>&lt;Directory /home/mart/programmation/python/django/martfiles/&gt; </code></pre> <p>Try adding this to <code>httpd.conf</code>:</p> <pre><code>&lt;Directory /srv/http/wsgi-scripts/&gt; Order allow,deny Allow from all &lt;/Directory&gt; </code></pre> <p>Or, put your <code>django.wsgi</code> file somewhere inside <code>/home/mart/programmation/python/django/martfiles/</code>. That should work.</p> <p>EDIT: alright, here's an example httpd.conf that is working on a production machine:</p> <pre><code>&lt;VirtualHost *:80&gt; # Admin email, Server Name (domain name) and any aliases ServerAdmin testing@example.de ServerName www.example.de DocumentRoot /home/example/testing/parts/public Alias /media /home/example/testing/parts/public/media # WSGI Settings WSGIDaemonProcess example user=example group=example threads=25 WSGIProcessGroup example WSGIScriptAlias / /home/example/testing/parts/public/django.wsgi &lt;Directory "/home/example/testing/parts/public"&gt; # Allow Apache to follow links Options FollowSymLinks # Turn on the ability to use .htaccess files AllowOverride All # Controls who can get stuff from this directory Order allow,deny Allow from all &lt;/Directory&gt; &lt;/VirtualHost&gt; </code></pre> <p>So, if your dhango.wsgi is defined in a place set as accessible by a <code>&lt;Directory&gt;</code> directive, you could also <code>sudo su httpd</code> if that's the user that runs apache on your system, and simply try to read the css files, to see if apache can really access them...</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. 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