kutt
kutt copied to clipboard
Not show the homepage with options if anonymous links disabled
Is there a way to not show the extra option on the homepage unless logged in. Just show by default the login page.
@poeti8 I would like to work on this one if it sounds good to you
@dkyeremeh please, go ahead.
@poeti8 PR created #661
i added this lines to my nginx loadbalancer (provided by caprover in my case) which redirects root-visitors to the login ui. Since it is a next app, this does not prevent from navigating there via the menu. but its a simple solution and does the trick.
location = / {
return 301 /login;
}