Problems installing SeaDoc 0.7 with Seafile 12 in Unraid

Hi, the past 4 days i was trying to install SeaDoc with Seafil 12 throught Nginx Proxy Manager without success.
I dont know what part of the config was missing and need some help if someone could please.

First of all, i was trying the config with Unraid that is Docker based so i was trying with the repository seafileltd/sdoc-server:latest for SeaDoc and seafileltd/seafile-mc:12.0-latest for Seafile.

The auth in Seafile was from SSO Authentik with SSO (i dont know if this part is important for some config).

Actually this is my installation:

Seafile
docker run
-d
–name=‘seafile-12’
–net=‘Personalproxy’
–pids-limit 2048
-e HOST_OS=“Unraid”
-e HOST_HOSTNAME=“HostName”
-e HOST_CONTAINERNAME=“seafile-12”
-e ‘SEAFILE_SERVER_HOSTNAME’=‘seafile.personal.es’
-e ‘DB_HOST’=‘192.168.1.15’
-e ‘DB_ROOT_PASSWD’=‘bdPass’
-e ‘INIT_SEAFILE_ADMIN_EMAIL’=‘userAdmin@gmail.com’
-e ‘INIT_SEAFILE_ADMIN_PASSWORD’=‘adminPass’
-e ‘JWT_PRIVATE_KEY’=‘mySuperSecretKey’
-e ‘SEAFILE_SERVER_PROTOCOL’=‘https’
-e ‘NON_ROOT’=‘false’
-e ‘ENABLE_SEADOC’=‘true’
-e ‘SEADOC_SERVER_URL’=‘https:// seafile.personal.es/sdoc-server’ (here is a " " because the page detect it as link)
-e ‘TIME_ZONE’=‘Europe/Madrid’
-p ‘8447:80/tcp’
-v ‘/mnt/user/Datos/seafile12’:‘/shared/’:‘rw’
-v ‘/mnt/user/Datos/Multimedia’:‘/multimedia’:‘rw’ ‘seafileltd/seafile-mc:12.0-latest’

SeaDoc
docker run
-d
–name=‘seadoc-server’
–net=‘Personalproxy’
–pids-limit 2048
-e HOST_OS=“Unraid”
-e HOST_HOSTNAME=“HostName”
-e HOST_CONTAINERNAME=“seadoc-server”
-e ‘SEADOC_VOLUME’=‘/opt/seadoc-data’
-e ‘SEAFILE_MYSQL_DB_HOST’=‘192.168.1.15’
-e ‘SEAFILE_MYSQL_DB_USER’=‘root’
-e ‘SEAFILE_MYSQL_DB_PASSWORD’=‘bdPass’
-e ‘TIME_ZONE’=‘Europe/Madrid’
-e ‘JWT_PRIVATE_KEY’=‘mySuperSecretKey’
-e ‘SEAFILE_SERVER_HOSTNAME’=‘seafile.personal.es’
-e ‘SEAFILE_SERVER_PROTOCOL’=‘https’
-p ‘8888:7070/tcp’
-v ‘/mnt/user/appdata/seadoc-data’:‘/shared’:‘rw’ ‘seafileltd/sdoc-server:latest’

SeaDoc in Ngnix looks like this:
location /sdoc-server/ {
proxy_pass http ://192.168.1.15:8888/; (here is a " " because the page detect it as link)
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 100m;
}

I was searching for help in other posts and saw that the good config has the version of SeaDoc in “*/sdoc-server/” like my config, so right now is saying something like “Welcome to sdoc-server. The current version is 0.7.0” that i think its good

Logs in SeaDoc:
image

So the final error looks like “Permission denied”, this creating a new pages of a wiki
“{“error_msg”:“You don’t have permission to access.”}” and Error 403 Forbidden on the call too

I tryed also the old config of SeaDoc but couldnt make it work

Sorry for my english and thanks for suggestions!

In version 12.0, you should use 1.0-latest seadoc image. Please try if this solve your problem.