Installed nodebb. login/register。Forbidden

General Discussion

Suggested Topics


  • 1 Votes
    1 Posts
    174 Views

    Since community.nodebb.org are for discussing the platform of NodeBB, it probably make sense to have a group that is whoever has a verified nodebb deployment and as admin. Having such group will help motivate more people to ask questions, help those site admins and also a promote a culture of community target: the "user" of NodeBB software itself: the site admins of NodeBB.

    I checked the group and it seems it doesn't exist yet.

    WDYT?

  • 0 Votes
    1 Posts
    181 Views

    Every so often we update our installation guide. This time we had a lot to update with MongoDB and CentOS components having big updates since the last guide.

    How To Install NodeBB 1.13, NodeJS 13, MongoDB 4.2 on CentOS 8

    This is assuming a CentOS 8 Stream Minimal starting point, with "yum upgrade -y" having been run ahead of time. One script to take you from vanilla minimal install to fully running NodeBB community.

  • NGINX as Proxy/Advice

    General Discussion
    0 Votes
    4 Posts
    1k Views

    @julian @PitaJ

    Totally got it. Thanks you guys. I didn't understand the "why" before, now I get it! 🙂

  • 0 Votes
    5 Posts
    2k Views

    @julian Not a problem. It's back. Hope to find gold!

  • 0 Votes
    5 Posts
    2k Views

    My knowledge of Varnish is very limited - but don't you have to either pipe Varnish into nginx and then NodeBB or nginx into Varnish and then NodeBB? From your configuration, it seems you're trying to pipe nginx into NodeBB on port 2000 and the same for Varnish. Can Varnish and nginx coexist on the same port?

    Here is my working configuration but against, I'm running nginx to Varnish's default port (e.g., 6081).

    server { listen 80; server_name domain.com *.domain.com; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://127.0.0.1:6081/; #proxy_pass http://127.0.0.1:4567/; proxy_redirect off; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }

    For Varnish, I'm just using the default instructions. RHEL 6.5 as well.