non-working keys in ubuntu installing docs

Technical Support

Suggested Topics


  • 0 Votes
    3 Posts
    1k Views

    To add, you'll need at least 512mb memory, and a swap partition defined

  • Error After Install

    Solved Technical Support
    1 Votes
    15 Posts
    5k Views

    I had the same problem when I was playing with NodeBB on a $2.5 vps from Vultr (=512MB ram). htop shows me that build process uses all available ram and cpu. Deploying on a decent machine/vps would solve the problem, aternatively, I called build steps one at a time ( eg ./nodebb build languages , ./nodebb build 'client side styles' etc) . Hope this helps.

  • Sendmail installation?

    Technical Support
    0 Votes
    3 Posts
    959 Views

    You probably shouldn't be using sendmail anyways. It will get caught by spam filters.

  • 0 Votes
    9 Posts
    4k Views

    @Bri Yes I did. I follow this guide to install nodebb:

    https://nodebb.readthedocs.io/en/latest/installing/os/centos.html

    I installed node 7.0.0

  • 0 Votes
    34 Posts
    19k Views

    @Violing

    I was able to make it work with /forum; no ^~ required. Given what @yariplus stated this seems relevant.
    My conf:

    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; proxy_set_header Connection "upgrade"; }

    Indented lines are ones that I copied from my other blocks that weren't present in the suggested.