Is it possible to configure two sites on different modes at the same 
configuration?
site_a is running on embedded mode
site_b is running on daemon mode

I am using apache (httpd-2.4.41), httpd.conf:

WSGIScriptAlias /site_a /home/site_a/site_a/django.wsgi
<Directory /home/site_a/site_a>
        Order deny,allow
        Allow from all
</Directory>


WSGIDaemonProcess pg_site_b processes=2
WSGIProcessGroup pg_site_b
WSGIScriptAlias /site_b /home/site_b/site_b/wsgi.py process-group=pg_site_b
<Directory /home/site_b/site_b>
        Order deny,allow
        Allow from all
</Directory>



Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/modwsgi/16513f3c-506c-4482-848c-e6e88d561ac2%40googlegroups.com.

Reply via email to