[SOLVED] Migrating old nodebb - need advises

General Discussion

Suggested Topics


  • 0 Votes
    3 Posts
    567 Views

    @oplik0 +1 on the Jitsi stuff. Don't know jack about the code. I have been following that project since its very early days. Impressive and sustained progress, it makes. No flash in the pan, one or two shot wonder preceding an exit strategy, were they. Impressive. 👍

  • 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.

  • 0 Votes
    4 Posts
    1k Views

    Who does your hosting? Just wondering because i know there are some really good tutorials for nodebb scattered around the interwebs.

  • 0 Votes
    7 Posts
    3k Views

    @ A Former User
    I just wanted to note that the regex isn't necessary. I just installed and my working config is as follows:

    location /forum/ { proxy_pass http://172.17.2.3:4567; proxy_redirect off; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-NginX-Proxy true; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; }
  • 0 Votes
    1 Posts
    884 Views

    Hello,

    I'm planning to use nodebb for a ~100 users forum.
    For conveniency, I would like to deploy it on production using docker.
    I have successfully deployed a test instance on docker (v0.6.1), and it's great. Nodebb is really easy and nice to setup, I really like it 👍.
    I will try to upgrade it to v0.7.x and test it before using it in production.

    I was wondering if people do use docker for production environments?
    Thanks a lot.