1

Topic: [proxy:warn] [pid 1153] AH01146

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.4
- Linux/BSD distribution name and version: CentOS 7.1
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): MariaDB 10.1.11.1
- Web server (Apache or Nginx): Apache 2.4.6 (CentOS)
- Manage mail accounts with iRedAdmin-Pro?
- Related log if you're reporting an issue:
====
#
systemctl status httpd.service

Feb 15 18:55:39 domain.me systemd[1]: Starting The Apache HTTP Server...
Feb 15 18:55:40 domain.me httpd[1153]: [Mon Feb 15 18:55:40.627982 2016] [proxy:warn] [pid 1153] AH01146: Ignoring parameter 'retry=60' for worker 'http://127.0.0.1:20000/SOGo' because of worker sharing
Feb 15 18:55:40 domain.me httpd[1153]: [Mon Feb 15 18:55:40.628817 2016] [proxy:warn] [pid 1153] AH01146: Ignoring parameter 'connectiontimeout=5' for worker 'http://127.0.0.1:20000/SOGo' because of worker sharing
Feb 15 18:55:40 domain.me httpd[1153]: [Mon Feb 15 18:55:40.631721 2016] [proxy:warn] [pid 1153] AH01146: Ignoring parameter 'timeout=360' for worker 'http://127.0.0.1:20000/SOGo' because of worker sharing
Feb 15 18:55:42 domain.me systemd[1]: Started The Apache HTTP Server.
#

Is this normaly work for SOGo and Apache ?

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: [proxy:warn] [pid 1153] AH01146

Please swap the order of two "ProxyPass" setting in /etc/httpd/conf.d/SOGo.conf, then restart Apache service.

3

Re: [proxy:warn] [pid 1153] AH01146

Could you please clarify what should be changed in order?

Alias /SOGo.woa/WebServerResources/ \
      /usr/lib64/GNUstep/SOGo/WebServerResources/
Alias /SOGo/WebServerResources/ \
      /usr/lib64/GNUstep/SOGo/WebServerResources/

<Directory /usr/lib64/GNUstep/SOGo/>
    AllowOverride None

    <IfVersion < 2.4>     
        Order deny,allow
        Allow from all
    </IfVersion>
    <IfVersion >= 2.4>
        Require all granted
    </IfVersion>

    # Explicitly allow caching of static content to avoid browser specific behavior.
    # A resource's URL MUST change in order to have the client load the new version.
    <IfModule expires_module>
      ExpiresActive On
      ExpiresDefault "access plus 1 year"
    </IfModule>
</Directory>

## Uncomment the following to enable proxy-side authentication, you will then
## need to set the "SOGoTrustProxyAuthentication" SOGo user default to YES and
## adjust the "x-webobjects-remote-user" proxy header in the "Proxy" section
## below.
#
## For full proxy-side authentication:
#<Location /SOGo>
#  AuthType XXX
#  Require valid-user
#  SetEnv proxy-nokeepalive 1
#  Allow from all
#</Location>
#
## For proxy-side authentication only for CardDAV and GroupDAV from external
## clients:
#<Location /SOGo/dav>
#  AuthType XXX
#  Require valid-user
#  SetEnv proxy-nokeepalive 1
#  Allow from all
#</Location>

ProxyRequests Off
SetEnv proxy-nokeepalive 1
ProxyPreserveHost On

# When using CAS, you should uncomment this and install cas-proxy-validate.py
# in /usr/lib64/cgi-bin to reduce server overloading
#
# ProxyPass /SOGo/casProxy http://localhost/cgi-bin/cas-proxy-validate.py
# <Proxy http://localhost/app/cas-proxy-validate.py>
#   Order deny,allow
#   Allow from your-cas-host-addr
# </Proxy>

ProxyPass /SOGo http://127.0.0.1:20000/SOGo retry=0

# Enable to use Microsoft ActiveSync support
# Note that you MUST have many sogod workers to use ActiveSync.
# See the SOGo Installation and Configuration guide for more details.
#
ProxyPass /Microsoft-Server-ActiveSync \
http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync \
retry=60 connectiontimeout=5 timeout=360

<Proxy http://127.0.0.1:20000/SOGo>
## adjust the following to your configuration
  RequestHeader set "x-webobjects-server-port" "443"
##  RequestHeader set "x-webobjects-server-name" "mysite.me"
##  RequestHeader set "x-webobjects-server-url" "https://mysite.me"

## When using proxy-side autentication, you need to uncomment and
## adjust the following line:
  RequestHeader unset "x-webobjects-remote-user"
#  RequestHeader set "x-webobjects-remote-user" "%{REMOTE_USER}e" env=REMOTE_USER

  RequestHeader set "x-webobjects-server-protocol" "HTTP/1.0"

  AddDefaultCharset UTF-8

  Order allow,deny
  Allow from all
</Proxy>

# For Apple autoconfiguration
<IfModule rewrite_module>
  RewriteEngine On
  RewriteRule ^/.well-known/caldav/?$ /SOGo/dav [R=301]
  RewriteRule ^/.well-known/carddav/?$ /SOGo/dav [R=301]
</IfModule>

Thanks!

4

Re: [proxy:warn] [pid 1153] AH01146

If I do not use Microsoft ActiveSync, can I comment out these lines?

# Enable to use Microsoft ActiveSync support
# Note that you MUST have many sogod workers to use ActiveSync.
# See the SOGo Installation and Configuration guide for more details.
#
ProxyPass /Microsoft-Server-ActiveSync \
http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync \
retry=60 connectiontimeout=5 timeout=360

5

Re: [proxy:warn] [pid 1153] AH01146

kysil wrote:

ProxyPass /SOGo http://127.0.0.1:20000/SOGo retry=0

ProxyPass /Microsoft-Server-ActiveSync \
http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync \
retry=60 connectiontimeout=5 timeout=360

There're 2 "ProxyPass" directives, please swap the order of them, like below:

ProxyPass /Microsoft-Server-ActiveSync \
http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync \
retry=60 connectiontimeout=5 timeout=360

ProxyPass /SOGo http://127.0.0.1:20000/SOGo retry=0

6

Re: [proxy:warn] [pid 1153] AH01146

ZhangHuangbin wrote:
kysil wrote:

ProxyPass /SOGo http://127.0.0.1:20000/SOGo retry=0

ProxyPass /Microsoft-Server-ActiveSync \
http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync \
retry=60 connectiontimeout=5 timeout=360

There're 2 "ProxyPass" directives, please swap the order of them, like below:

ProxyPass /Microsoft-Server-ActiveSync \
http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync \
retry=60 connectiontimeout=5 timeout=360

ProxyPass /SOGo http://127.0.0.1:20000/SOGo retry=0

Many Thanks! This works fine!