Unable to authenticate with Shibboleth

hi,

I suppose that you have read this post about the pro version :

If not, it may provide some tips to troubleshoot.

I also give you my Apache config, if it can help.

   Alias /seafmedia  /seafile/seafile-server-latest/seahub/media
   RewriteEngine On

   # debug error 127.0.0.1
   ProxyPreserveHost On

   #
   # seafile fileserver
   #
   ProxyPass /seafhttp http://127.0.0.1:8082
   ProxyPassReverse /seafhttp http://127.0.0.1:8082
   RewriteRule ^/seafhttp - [QSA,L]

  <Location /seafmedia>
  ProxyPass !
  Require all granted
  </Location>


  <Directory /seafile/seafile-server-latest/seahub/media>
  Order allow,deny
  Allow from all
  #New directive needed in Apache 2.4.3:
  Require all granted
  </Directory>


  #
  # seafile webdav
  #

  # WCGI mode

  SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
  ProxyPass /davf http://127.0.0.1:8080/
  ProxyPassReverse /davf http://127.0.0.1:8080/



  #
  # seahub
  #


  # WCGI mode

  SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
  ProxyPass / http://127.0.0.1:8000/
  ProxyPassReverse / http://127.0.0.1:8000/


  #Shibboleth
  <Location /Shibboleth.sso>
        SetHandler shib
        AuthType shibboleth
        ShibRequestSetting requireSession 1
        ShibRequestSetting applicationId default
        require shib-session
  </Location>

  <Location /api2>
        AuthType None
        Require all granted
        Allow from all
        satisfy any
  </Location>

  <Location /shib-login>
        AuthType shibboleth
        ShibRequestSetting requireSession true
        Require valid-user
        # WCGI mode
        ShibUseHeaders On
  </Location>