i have this mod_wsgi configuration but onlly web.py runs normally my other 
2 separate wsgi apps give a NOT found when they are tried to run through 
the browser.

    <Directory /home/nikos/public_html>
        AllowOverride None
        Require all granted
    </Directory>
    
    WSGIDaemonProcess downloads user=nikos group=nikos threads=5 
home=/home/nikos/public_html
    WSGIScriptAlias /downloads /home/nikos/public_html/downloads.py 
process-group=downloads application-group=%{GLOBAL}
    
    WSGIDaemonProcess clientele user=nikos group=nikos threads=5 
home=/home/nikos/public_html
    WSGIScriptAlias /clientele /home/nikos/public_html/clientele.py 
process-group=clientele application-group=%{GLOBAL}
    
    WSGIDaemonProcess app user=nikos group=nikos threads=5 
home=/home/nikos/public_html
    WSGIScriptAlias / /home/nikos/public_html/app.py process-group=app 
application-group=%{GLOBAL}

for example if i try:
http://superhost.gr/clientele.py

    Not Found
    The requested URL was not found on the server. If you entered the URL 
manually please check your spelling and try again.

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