WebDav addon behind NGINX

Hello!
By default webDAV addon uses basic authentication and the basic authentication requires an encrypted connection (https). We use an NGINX as revers proxy in our project and TLS is provided by the NGINX.

How should we operate in this case? Do we have to remove nginx and use tomcat with tls certificates? (this is unappreciated option)
Can we disable the https requirement somehow? (it this case we provide it on the nginx)

Hi, @j.s1

As an alternative to the Basic authentication, you can enable Digest authentication, which doesn’t require SSL. In the addon’s documentation you can find steps, how to configure it. Also, be sure to change the value of webdav.urlPrefix property, which by default starts with https://.

Regards,
Gleb

Thank You