I even tried this setup within httpd-vhosts.conf to see if my other 2 wsgi 
scripts would work being run by their own seperate domains.

    <VirtualHost *:80>
        ServerName clientele.superhost.gr
        ServerAdmin [email protected]
    
        <Directory /home/nikos/public_html>
            Require all granted
        </Directory>
    
        WSGIDaemonProcess clientele user=nikos group=nikos 
home=/home/nikos/public_html/
        WSGIScriptAlias / /home/nikos/public_html/clientele.py 
process-group=clientele application-group=%{GLOBAL}
    </VirtualHost>
    
    
    
    
    <VirtualHost *:80>
        ServerName downloads.superhost.gr
        ServerAdmin [email protected]
    
        <Directory /home/nikos/public_html>
            Require all granted
        </Directory>
    
        WSGIDaemonProcess downloads user=nikos group=nikos 
home=/home/nikos/public_html/
        WSGIScriptAlias / /home/nikos/public_html/downloads.py 
process-group=downloads application-group=%{GLOBAL}
    </VirtualHost>

but.... same things happen when i give their domain names, that being, 
'web.py' is loading in this case as well!

Why would only 'web.py' be the only wsgi script that gets loaded?

-- 
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 post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/d/optout.

Reply via email to