Redirect discover page to login page

Try adding the following to the nginx config file

    location = / {
        return 301 /login;
    }

and remove any existing location = / block

Cheers!

1 Like