Hi Lenya devs,

I'm a bit confused how the proxy configuration works

ATM we have something like this:

  <proxies ssl="false" root="...">
    <proxy area="live" ssl="true" url="..."/>
    <proxy area="live" ssl="false" url="..."/>
    <proxy area="authoring" ssl="true" url="..."/>
    <proxy area="authoring" ssl="false" url="..."/>
  </proxies>

Why does the <proxies> element with ssl=false have
children with ssl=true?

Wouldn't it make more sense to have two <proxies> blocks
which inherit the ssl setting to the <proxy> element?
And why does the <proxies> element use a "root" attribute
while the <proxy> elements use a "url" attribute?

How about this:


  <proxies ssl="false" url="http://...";>
    <proxy area="live" url="http://..."/>
    <proxy area="authoring" url="http://..."/>
  </proxies>

  <proxies ssl="true" url="https://...";>
    <proxy area="live" url="https://..."/>
    <proxy area="authoring" url="https://..."/>
  </proxies>


WDYT?

-- Andreas


-- 
Andreas Hartmann, CTO
BeCompany GmbH
http://www.becompany.ch


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to