Social login

Technical Support

Suggested Topics


  • Login problem 2.0.1

    Solved Technical Support
    2 Votes
    24 Posts
    2k Views

    @murcs You can simply take the file from there and overwrite in your own install.

    For example, if you locate the plugin itself in your folder structure, then open library.js and change

    const utils = require.main.require('./public/src/utils');

    To

    const utils = require.main.require('./src/utils');

    And rebuild, this should then work.

  • 1 Votes
    6 Posts
    524 Views

    I found that google's sso button is in the edit in the profile, but after clicking it shows not found.Currently I am using ssl reverse proxy, do I need to configure redirects?
    52ca1b6b-4a7a-4b25-ad6c-d590f1811140-image.png
    ecfb416c-049c-4296-a5c1-644db2898f46-image.png

  • 2 Votes
    20 Posts
    1k Views

    @julian I found this: https://github.com/NodeBB/NodeBB/issues/4734
    Using the certbot configuration, I edited /etc/nginx/sites-available/default

    Leaving the certbot managed parts as they are, my custom config looks like this now:

    proxy_set_header X-Forwarded-Proto $scheme; location / { proxy_pass http://127.0.0.1:4567; }

    The special part is the x-forwarded-proto line, that's what I was needing all along.

    And in /home/nodebb/nodebb/config.json I'm setting the URL with https:

    { "url": "https://forums.mydomain.com", "secret": "<REDACTED>", "database": "mongo", "port": "4567", "mongo": { "host": "127.0.0.1", "port": "27017", "username": "nodebb", "password": "<REDACTED>", "database": "nodebb", "uri": "" } }

    This resolved my problem.

  • 0 Votes
    6 Posts
    1k Views

    @username1001 yes that should work. Then run ./nodebb setup

  • 0 Votes
    8 Posts
    3k Views

    @psychobunny said:

    I wanted persona to be similar to what you're thinking, so you get /recent and then also posts from people you follow.

    The idea is it'll be a card-based interface and you could on mobile swipe away things you weren't interested in or archive stuff for later

    Anyways, I'm running into a brick wall for the desktop version of the UX, so I haven't made much progress on that idea just yet. Open to hearing any suggestions 🙂

    @psychobunny any progress for the card-based theme you talked about here?