How to integrate existing application users on to nodebb, so that they need not register again.

General Discussion

Suggested Topics


  • 2 Votes
    5 Posts
    161 Views

    @julian count me in. Sudonix.com will be upgrading to 3.x from 2.x as soon as it's ready for release.

  • 0 Votes
    3 Posts
    606 Views

    It's a plugin, and you can use more than one.

  • 0 Votes
    1 Posts
    399 Views

    Is it possible to set user reputation via the write API?

    Alternatively, it is possible to bypass posting restrictions when posting via the write API?

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

  • 5 Votes
    33 Posts
    11k Views

    @eva2000 this exporter hits the VB databases, gets all the relevant data, then writes them all on the file system in some storage directory in a structure that this nodebb-plugin-import can understand then import to the NodeBB database. .. basically a two step import technique.