I have a running coturn instance on Centos-7-x64, if I access it through the browser I can see:
TURN Server
use https connection for the admin session
After examining the documentation, I found this:
Add the admin user(s) to the database, with turnadmin utility. If you added those users, then they will be able to connect to the TURN server ports over HTTPS from your browser and perform admin tasks with the web interface.
So I created an admin user with the following command:
$ sudo bin/turnadmin -A -u username -p password
And I can see that user listed when running:
turnadmin -L
However, when I try to connect to https://my.ip.adrss:3478 I can't see the promised admin.
What am I missing here?