Hi!
I can’t connect to the onlyoffice via webdav protocol.
After 3 attempts to authorize, the Onlyoffice return an error - “Access denied”
I checked firewall, network, use other WinSCP client but the error still occurs.
- Architecture: HAProxy + Onlyoffice (Docker)
- Network
a) Container - no firewall or enhanced security
networks:
onlyoffice:
driver: ‘bridge’
b) HAProxy settings
use_backend office if { req.hdr(host) -i onlyoffice.local.test}
backend office
mode http
acl existing-x-forwarded-host req.hdr(X-Forwarded-Host) -m found
acl existing-x-forwarded-proto req.hdr(X-Forwarded-Proto) -m found
http-request add-header X-Forwarded-Host %[req.hdr(Host)] unless existing-x-forwarded-host
http-request add-header X-Forwarded-Proto https unless existing-x-forwarded-proto
server office 192.168.0.222:443 check ssl verify none