Hi,

I'm just copying my django project on my Fedora-Plesk server and
something is missing in my mind.
All my projects are Virtual hosts.

My main domain :
domain.fr

My django project :
django.domain.fr

And my medias :
medias.domain.fr

On plesk, you cannot write directly on the httpd.conf because it's
overwriten by plesk itself, you have to add other vhost.conf files on
each subdomains.

Plesk did that for me into the httpd.conf file :

<VirtualHost 92.92.92.192:80>
        ServerName   django.domain.fr:80
        DocumentRoot /var/www/vhosts/domain.fr/subdomains/django/
httpdocs
        CustomLog  /var/www/vhosts/domain.fr/statistics/logs/
access_log plesklog
        ErrorLog   /var/www/vhosts/domain.fr/statistics/logs/error_log
        <IfModule mod_ssl.c>
                SSLEngine off
        </IfModule>
        <Directory  /var/www/vhosts/domain.fr/subdomains/django/
httpdocs>
        <IfModule sapi_apache2.c>
                php_admin_flag engine off
        </IfModule>
        <IfModule mod_php5.c>
                php_admin_flag engine off
        </IfModule>
        <IfModule mod_python.c>
        <Files ~ (\.py$)>
                SetHandler python-program
                PythonHandler   mod_python.cgihandler
        </Files>
        </IfModule>
                Options -Includes -ExecCGI
        </Directory>
</VirtualHost>

I'm not allow to modify this file.
In my own vhost.conf, what do I have to write ?
I tried this (and other derivated from 
http://www.djangoproject.com/documentation/modpython/)
:

<VirtualHost  92.92.92.192:80>
    ServerName django.domain.fr
    SetEnv DJANGO_SETTINGS_MODULE myproject.settings
</VirtualHost>

With no success.
I really want to improve my knowledge into Django Deployement on
apache.
Thanks in advance.

Martyn

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to