Hi Peter,

i'm not really a sysadmin, so I'm no expert on Apache configurations, but can't you use the Location directive to handle this?

http://httpd.apache.org/docs/2.0/mod/core.html#location

Otherwise if you would want to solve it in Cocoon, I guess a combination of input modules and a selector would do the trick.

Regards,

Jeroen

Peter Flynn wrote:
Jeroen Reijn wrote:
Hi Peter,

have you also considered doing this with a webserver in front of your cocoon application?

Yes, we currently front Tomcat with Apache httpd as a virtual host, but it's at the top level, eg

<VirtualHost *:80>
    ServerAdmin [email protected]
    ProxyPreserveHost On
    ProxyPass / ajp://localhost:8009/
    ProxyPassReverse / ajp://localhost:8009/
    ServerName foobar.ucc.ie
    ErrorLog logs/foobar.ucc.ie-error_log
    CustomLog logs/foobar.ucc.ie-access_log combined
</VirtualHost>

I can't seem to find any information about how to refine this so that access to the specific URI for the feed gets checked, and all other accesses get allowed, unless I create a separate VH for that feed only.

///Peter


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to