Hi, I'm looking for some help getting Apache running correctly with
FlatPages, as well running with multiple sites on the same server.

First the FlatPages problem.  Everything's fine on my dev box (WinXP), but
on my production box (Debian) the Flatpages only work when running the
django testing server, not in Apache.  I.e.:

http://127.0.0.1:8000/Lorem-ipsum/

works, but

http://foo.####.com/Lorem-ipsum/

results in "page not found (404), No FlatPage matches the given query".  My
first guess is an Apache2.2 problem.  I'm using a VirtualHost in my
"default" file, as follows:

<VirtualHost *:80>
    DocumentRoot /var/www/
    ServerName foo.####.com
    <Directory /var/www/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
            AddHandler mod_python .py
            PythonHandler mod_python.publisher
            PythonDebug On
            # RedirectMatch ^/$ /apache2-default/
    </Directory>


    <Location "/">
            SetHandler python-program
            PythonHandler django.core.handlers.modpython
            SetEnv DJANGO_SETTINGS_MODULE cms.settings
            PythonDebug On
            PythonPath "['/sites'] + sys.path"
    </Location>

    <Location "/site_media">
        SetHandler none
    </location>

    Alias /media
/usr/share/python-support/python-django/django/contrib/admin/media
    <Location "/media">
        SetHandler none
    </Location>

Everything else seems to work, admin, blog (coltrane), but there's something
wrong with the Flatpages, and basically anything sitting in the root (e.g.
"/" puts you in a redirect loop).

Is there anything obvious I'm missing?

Ok, second problem!  I want to run lots of subdomains on this server, all
mostly the same, but with the ability to have slight variations in their
setup.  E.g.

foo.####.com
bar.####.com
baz.####.com

need the ability to use different branches, databases, etc. (e.g.
"testing.####.com" might point to a different database, etc.).

So, is there an effective way to manage all those SITE_ID values in
settings.py?  Do I have to have an entry in django_flatpage_sites for every
flatpage and site in production (cartesian product)?  Is there a cool way to
manage that?

Thanks, and apologies for the double question.

Joe

--~--~---------~--~----~------------~-------~--~----~
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