Hi.
I am running rclone rcd & http server on windows 10 using
rclone rcd --config="rc.conf" --rc-web-gui-no-open-browser --rc-addr :23456 --rc-user "useradmin" --rc-pass "userpass" webgui/contents --rc-web-gui --rc-serve -v
I have put it behind cloudfare free tunnel using : cloudflared tunnel --metrics 127.0.0.1:23455 --url localhost:23456
I am able to access http server as well as rclone web gui over the cloudflare http url i.e. https://randomname.trycloudflare.com and also I can perform operations in command line locally. e.g. To view files : curl -u 'useradmin:userpass' -X POST ``http://192.168.1.2:23456/operations/list``-d "fs=CDrive:" -d "remote=Users"
But running the same operations using cloudflare tunnel URL i.e. curl -u 'useradmin:userpass' -X POST ``https://randomname.trycloudflare.com/operations/list``-d "fs=CDrive:" -d "remote=Users" returns error 401 Unauthorized
Please guide.
rclone version : 1.65.1
Thanks.