On our Apache server, we're hosting multiple Django projects. The
Apache configuration is like this:
PythonAutoReload Off
<VirtualHost *:80>
ServerName first.example.com
<Location "/">
SetHandler python-program
SetEnv DJANGO_SETTINGS_MODULE first.settings
PythonInterpreter first
</Location>
</VirtualHost>
<VirtualHost *:80>
ServerName second.example.com
<Location "/">
SetHandler python-program
SetEnv DJANGO_SETTINGS_MODULE second.settings
PythonInterpreter second
</Location>
</VirtualHost>
I often have to reload one project because I've updated the code.
Currently, I use `/etc/init.d/apache2 reload`, but that causes all of
our projects to be unavailable for some seconds. Is there a way to
'kill' one of the Python interpreters, so that only one specific
project is reloaded?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---