Skip to content
Gerrit Gogel edited this page Feb 5, 2024 · 2 revisions

For OAuth the same network problem as with LDAP will occur, but here you will need to hook up the seahub service to the external network.

Tip: If you always want to use OAuth without clicking on the Single Sign-On button, you can rewrite the following paths in your reverse proxy:

Caddy:

caddy.rewrite: /accounts/login* /oauth/login/?

Nginx:

rewrite ^(/accounts/login)(.*)$ /oauth/login$2 break;
Clone this wiki locally