Does the latest version of Web2Py using Apache and WSGI support a mount 
point of anything other than /?

The following works on my system i.e. when I go to www.[mydomain].com the 
hello world app comes up.  (This is a line from my 
/etc/apache2/sites-available/www.[mydomain].com file.)

WSGIScriptAlias / /home/www-data/web2py/wsgihandler.py

The following does not work on my system i.e. when I go to 
www.[mydomain].com/ace the hello world app DOES NOT come up.

WSGIScriptAlias /ace /home/www-data/web2py/wsgihandler.py

While relatively new to Web2Py, I have read the book, browsed the web, 
reviewed the topics here - and have yet to find a solution that works.  I 
saw in one previous answer “it is very easy” and to do

#in routes.py 
routes_out=(('(?P<anything>.*)','/ace\g<anything>'),)

But this has not worked for me.

Should this work?  Am I the only one suffering?  Is there a way that does 
actually work?

Thanks in advance!

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to