On 9 sep, 08:40, Fran <francisb...@googlemail.com> wrote:

> There is no redirection here, just an Allow 
> statement:http://httpd.apache.org/docs/2.2/howto/access.html
> I don't see how this would work at all - it doesn't seem to be
> processing Python in any way - no Proxy to CherryPy, no WSGI or
> anything.
>
> I would look at Chapter 11 of the manual - e.g. the free Scribus
> version:http://web2py.com/examples/default/docs
>
> F

Fran,

Just take the example from: 
http://forum.webfaction.com/viewtopic.php?pid=8473#p8473

Taking this VH:

<VirtualHost 127.0.0.1:NNNN>
    ServerName admin.example.com
    DocumentRoot /home/[YOUR ACCOUNT]/webapps/apachewsgi/web2py/
applications/admin
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /home/[YOUR ACCOUNT]/webapps/apachewsgi/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>
</VirtualHost>


making an analogy, in my case should be:

<VirtualHost 127.0.0.1:NNNN>
  ServerName mydomain.com
  DocumentRoot /home/myaccount/webapps/apachewsgi/web2py/applications/
myapplication
  <Directory />
    Options FollowSymLinks
    AllowOverride None
  </Directory>

  <Directory /home/myaccount/webapps/apachewgsi/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
  </Directory>
</VirtualHost>

web2py works, but comes a welcome.

(I have some minimal experience in Cherokee, I will get to see some
apache!)

Jose

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to