Doublecommander basic user auth

Hello there!
I am using the last version of the Doublecommander container and I noticed that, by default, access to the GUI is open for anyone who has the URL. I have been reading but I haven’t found the way to change the user/password and request for credentials.

ps: I couldn’t find a “doublecommander” tag so I used another just for now.

In the meantime, since I have a nginx proxy server running for the outside world, I configured a basic authentication adding this to my server’s location:

auth_basic “Restricted”;
auth_basic_user_file /path/to/file/.htpasswd;

This is a temporary fix while I investigate for a proper solution.