it there a way to get in the Admin panel? If i write: addres/etherpad/admin i get a loginmask, but nothing work. no admin, machine secret, nothing. Any idea? It the Admin Panel installed in the UCS Etherpad App?
you have the set the password in the docker image layer path in the file settings.json under /var/lib/docker/overlay2/{LAYER_ID}/merged/opt/etherpad-lite/settings.json.
“users”: {
“admin”: {
// 1) “password” can be replaced with “hash” if you install ep_hash_auth
// 2) please note that if password is null, the user will not be created
“password”: “changeme1”,
“is_admin”: true
},
“user”: {
// 1) “password” can be replaced with “hash” if you install ep_hash_auth
// 2) please note that if password is null, the user will not be created
“password”: “${USER_PASSWORD:null}”,
“is_admin”: false
}
},
After that, restart the container with docker restart CONTAINER_ID
Now you have access to the etherpad-lite admin panel.