Hello! I'm trying to tune activesync. In Activesync I have this error:
Nov 22 08:57:50 sogod [324]: [ERROR] <0x0x55e23408b150[WOHttpTransaction]> client disconnected during delivery of response for <WORequest[0x0x55e233fe4d70]: method=POST uri=/SOGo/Microsoft-Server-ActiveSync?Cmd=Ping&User=[MASKED]&DeviceId=SEC1CFB2292AB59D&DeviceType=SamsungDevice app=SOGo rqKey=Microsoft-Server-ActiveSync rqPath=(null)> (len=13): the socket was shutdown My relevant settings are: Setup is nginx (reverse Proxy) ->httpd->SOGo: sogo.conf /* ActiveSync */ WOWorkersCount = 48; WOWatchDogRequestTimeout = 3540; SOGoMaximumPingInterval = 3540; SOGoMaximumSyncInterval = 3540; SOGoInternalSyncInterval = 30; /etc/httpd/conf.d/SOGo.conf on sogo side: ProxyPass /Microsoft-Server-ActiveSync \ http://127.0.0.1:20000/SOGo/Microsoft-Server-ActiveSync \ retry=60 connectiontimeout=75 timeout=3540 sogo.conf on nginx side: location /{ proxy_redirect off; proxy_set_header Host $http_host; proxy_set_header x-webobjects-server-protocol HTTP/1.0; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Connection close; proxy_pass_header Content-Type; proxy_pass_header Content-Disposition; proxy_pass_header Content-Length; proxy_pass http://[MASKED]; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; } location /Microsoft-Server-ActiveSync{ access_log /var/log/nginx/activesync.log; error_log /var/log/nginx/activesync-error.log; resolver [MASKED]; proxy_connect_timeout 75; proxy_send_timeout 3540; proxy_read_timeout 3540; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://[MASKED]/SOGo/Microsoft-Server-ActiveSync; proxy_redirect http://[MASKED]/SOGo/Microsoft-Server-ActiveSync /; } } My question is: are these errors normal of is there any parameter I can tune? Cheers Riccardo -- [email protected] https://inverse.ca/sogo/lists
