[Resin-interest] Open SSL and multiple sites

2008-03-31 Thread Arthur Naylor
We have multiple sites running on Linux ... entirely through resin 3 +. We need to implement SSL on several but not all of the sites. The documentation I can find seems to be for single sites on a single machine. Is there documentation for multiple sites on the same machine running on resin

Re: [Resin-interest] 3.1.3

2008-02-15 Thread Arthur Naylor
Arthur Naylor wrote: servlet-mapping url-regexp=/(food|travel|wine)/ servlet- name=Categories/ does not work either On Feb 14, 2008, at 6:55 PM, Knut Forkalsrud wrote: Arthur Naylor wrote: if i use the url-pattern such as in the following ... servlet-mapping url-pattern=/food/ servlet

Re: [Resin-interest] 3.1.3

2008-02-15 Thread Arthur Naylor
, Arthur Naylor wrote: i cannot get the url-regexp in the servlet-mapping tag to work ... in the web.xml ... with 3.1.3 anybody have similar issues or suggestions Can you post an example which is failing? -- Scott thanks !! arthur ___ resin

Re: [Resin-interest] 3.1.3

2008-02-14 Thread Arthur Naylor
and the page is delivered ... if i try using the regexp as it in the following ... the servlet is not called ... servlet-mapping url-regexp=/(food | travel | wine)/ servlet- name=Categories/ On Feb 14, 2008, at 6:05 PM, Scott Ferguson wrote: On Feb 14, 2008, at 2:56 PM, Arthur Naylor wrote: i

Re: [Resin-interest] 3.1.3

2008-02-14 Thread Arthur Naylor
servlet-mapping url-regexp=/(food|travel|wine)/ servlet- name=Categories/ does not work either On Feb 14, 2008, at 6:55 PM, Knut Forkalsrud wrote: Arthur Naylor wrote: if i use the url-pattern such as in the following ... servlet-mapping url-pattern=/food/ servlet-name=Categories

Re: [Resin-interest] mod_rewrite question

2008-01-14 Thread Arthur Naylor
wrote: On Jan 11, 2008, at 6:00 PM, Arthur Naylor wrote: hello !! i've read elsewhere that this should work fine but am not able to get the mod_rewrite condition and rule to affect the serving of resin's 404 instead of my default image ... Once the request gets to Resin, mod_rewrite doesn't

[Resin-interest] Using resin's rewrites to dispatch default files ??

2008-01-12 Thread Arthur Naylor
hey, there !! can resin's rewrites be used to dispatch URLs for missing files (such as missing images) to a default file (such as a default image) ... ?? this would work much as the apache mod_rewrite can detect missing files in its rewrite condition with -U and then use a rewrite rule to

[Resin-interest] (no subject)

2008-01-11 Thread Arthur Naylor
hello !! am trying to use apache's mod_rewrite for missing JPGs using a default JPG ... my .htaccess file has ... RewriteEngine on RewriteBase / # missing images RewriteCond %{REQUEST_URI} !-U RewriteRule .*\.jpg$ /assets/default.jpg [L,PT] but resin is still sending back its 404 ... when