Hi Ryan,

You need a VirtualHost section with exactly the same directives as in your original SOGo configuration except 3 things:
1) it must listen on 8800 (clear) or 8843 (ssl)
2) you need both ProxyPass directives instead of one:

ProxyPass /SOGo/ http://127.0.0.1:[port]/SOGo/ interpolate
ProxyPass / http://127.0.0.1:[port]/SOGo/dav/ interpolate

3) the Proxy subsection must also be modified to reflect the port you have chosen:

For port 8843 you'd have something like this:

<Proxy http://127.0.0.1:[port]>
  RequestHeader set "x-webobjects-server-port" "8843"
  RequestHeader set "x-webobjects-server-name" "mygoodcompany.com:8843"
RequestHeader set "x-webobjects-server-url" "https://mygoodcompany.com:8843";
  RequestHeader set "x-webobjects-server-protocol" "HTTP/1.0"
  RequestHeader set "x-webobjects-remote-host" "127.0.0.1"

  AddDefaultCharset UTF-8
</Proxy>

Note that Apache will likely issue a warning about the redefinition of the http://127.0.0.1:[port] proxy but you can safely ignore it.
--
Wolfgang Sourdeau  ::  +1 (514) 447-4918 ext. 125  ::  wsourd...@inverse.ca
Inverse inc. Leaders behind SOGo (sogo.nu) and PacketFence (www.packetfence.org)
-- 
users@sogo.nu
https://inverse.ca/sogo/lists

Reply via email to