Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Prevent default credentials from being generated when using htpasswd #4839
Comments
|
Can you give an example command line which demonstrates the problem? Thanks |
|
For example, |
|
Ah I see. It is the
So what we want is to not generate the password if a This would be quite a simple change if you want to have a go These lines need to be run only rclone/fs/rc/rcserver/rcserver.go Lines 96 to 107 in 1efb8ea |
|
I suspect there might be also a change needed related to opening browser automatically, and printing the URL to CLI, last line of your log output. I suspect it will fail if randomPass is not set. |


What is your current rclone version (output from
rclone version)?1.53.3
What problem are you are trying to solve?
Trying to prevent default password from being generated and added when
htpasswdoption is used. Since htpasswd is present, there generally should be no need for credentials besides those in htpasswd.How do you think rclone should be changed to solve that?
There should either be flag or the default should be changed to when
--rc-htpasswdis provided, default user/pass should not be generated and output to stdout.