I'm running Python 2.4, Django 1.0.2 and Apache2 on my Debian Etch
box.

I have Apache configured to run multiple websites using the
VirtualHost paradigm.  I've had an "Under Construction" message in
index.html at /var/www/mysitehome/htdocs.  Apache served this without
problems whenever mysite.com was requested.

I decided to develop mysite with Django, so I created /var/www/
mysitehome/dev/mysitehome and in that directory started a Django
project called mysite with one app named ap2009.  All done and
everything works great with the test server.

I copied all the Django files and directories from /var/www/mysitehome/
dev/mysitehome to /var/www/mysitehome.  I edited /var/www/mysitehome/
settings.py to reference /var/www/mysitehome only.  Then I edited my
httpd.conf file so that it now reads thusly:

# This is here for backwards compatability reasons and to support
#  installing 3rd party modules directly via apxs2, rather than
#  through the /etc/apache2/mods-{available,enabled} mechanism.
#
#LoadModule mod_placeholder /usr/lib/apache2/modules/
mod_placeholder.so
<Location "/mysite.com/">
    SetHandler python-program
    PythonHandler django.core.handlers.modpython
    SetEnv DJANGO_SETTINGS_MODULE mysite.settings
    PythonOption django.root /mysite.com
    PythonDebug On
    PythonPath "['/var/www/mysitehome'] + sys.path"
</Location>

I cycled Apache off and on.  However, my "Under Construction" message
was still getting served so I turned my attention to my sites-enabled
file for mysite.com:

#
#  mystite.com (/etc/apache2/sites-available/www.mysite.com)
#
<VirtualHost *>
        ServerAdmin webmas...@mysite.com
        ServerAlias mysite.com
        ServerAlias *.mysite.com

        # Indexes + Directory Root.
        DirectoryIndex index.html
        DocumentRoot /var/www/mysitehome/htdocs/

        # CGI Directory
        ScriptAlias /cgi-bin/ /var/www/mysitehome/cgi-bin/
        <Location /cgi-bin>
                Options +ExecCGI
        </Location>


        # Logfiles
        ErrorLog  /var/www/mysitehome/logs/error.log
        CustomLog /var/www/mysitehome/logs/access.log combined
</VirtualHost>

I edited the above down to this:

#
#  mystite.com (/etc/apache2/sites-available/mysite.com)
#
<VirtualHost *>
        ServerAdmin webmas...@mysite.com
        ServerAlias mysite.com
        ServerAlias *.mysite.com
</VirtualHost>

I again cycled Apache off and on.  My "Under Construction" message is
gone but only the only thing returned to a mysite.com request is "404
not found: The requested URL / is not found on this server."  I was
slightly encouraged by this as I assume that Django recieved the
request from for mystite.com/ stripped the django.root and
returned /.  I'm not sure if that's true or not.  I even added:

     (r'^/$', 'index'),

as a last resort to my urls.py file.

I tried several variations on Apache and Django file settings without
any further luck, and have not helped myself too much with a day's
worth of Google searches.

A) Thanks for reading this incredibly long post!
B) I would greatly appreciate any advice, tips and pointers you could
offer.

Thanks,

Tim
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to