• Home
  • Categories
  • Recent
  • Popular
  • Top
  • Tags
  • Users
  • Groups
  • Documentation
    • Home
    • Read API
    • Write API
    • Plugin Development
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
v3.4.2 Latest
Buy Hosting
Peter-Zoltan KeresztesP

Peter-Zoltan Keresztes

@Peter-Zoltan Keresztes
About
Posts
191
Topics
24
Groups
0
Followers
1
Following
1

Posts

Recent Best Controversial

    IP banning
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    Why don't you do that on firewall level. If you don't want to add rules manually try fail2ban


  • [nodebb-plugin-blog-comments] Blog Commenting Engine (Ghost, Wordpress widget)
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    @Giggiux yes it does.


  • Fresh install ?
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    @djcyry said:

    I have tried 2 options , no results ( i have rebooted the vps , restart forum , restart redis)

    Obviously the masterauth is not the one you need since that is used for the cluster. The one is needed is requirepass. After setting that password restart the redis, update your nodebb config with the redis password you set and restart it.


  • Nominating closed, Voting is in progress; nodeBB is one of nominations. (Chance to Win Free Chromebook from CMScritic)
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    Just did it, you are great


  • install on wp site
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    @absurdsmash

    First of all change the server_name for forum.mydomain.com to forum.mydomain.com and restart the nginx. Second of all please show the configuration of default and 22222 so that we can find out which is the proper config for mydomain.com.


  • changing e-mail notification content
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    Hello,

    Is there any way I can change the e-mail notification content?

    Thanks.


  • How to install NodeBB on Debian 8 (jessie)?
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    @Hillcow Sites-available and sites-enabed does only exist if you install the nginx from the OS repository if you install from any other repository you will only have conf.d which is a good place to put your configuration with the small change that the files in there need to end with .conf extensions.


  • can you help me
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    You need to install it where you want to run nodebb.


  • Cant access SSH server in Mac
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    and it starts with 2 and ends with 7 so that would give 5.


  • Cant access SSH server in Mac
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    Does you droplet has internet access? Try pinging google from it to make sure that it does have internet access. From your mac try to ping your droplet gateway. If that pings that mean there is an issue inside DO network contact the support line to have them fix the network.


  • Setting up Nodebb fail
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    Hello, I try to setup nodes when I run ./nodebb setup I got the following error on debian jessie:

    # ./nodebb setup
    7/6 15:57 [3529] - info: NodeBB v0.7.0 Copyright (C) 2013-2014 NodeBB Inc.
    7/6 15:57 [3529] - info: This program comes with ABSOLUTELY NO WARRANTY.
    7/6 15:57 [3529] - info: This is free software, and you are welcome to redistribute it under certain conditions.
    7/6 15:57 [3529] - info: 
    7/6 15:57 [3529] - info: NodeBB Setup Triggered via Command Line
    
    Welcome to NodeBB!
    
    This looks like a new installation, so you'll have to answer a few questions about your environment before we can proceed.
    Press enter to accept the default setting (shown in brackets).
    URL used to access this NodeBB (http://localhost:4567) 
    Please enter a NodeBB secret (some secret) 
    Which database to use (redis) 
    
    7/6 15:57 [3529] - info: Now configuring redis database:
    Host IP or address of your Redis instance (127.0.0.1) 
    Host port of your Redis instance (6379) 
    Password of your Redis database 
    Which database to use (0..n) (0) 
    Configuration Saved OK
    npm WARN package.json [email protected] license should be a valid SPDX license expression
    [email protected] node_modules/redis
    
    [email protected] node_modules/connect-redis
    └── [email protected] ([email protected])
    Populating database with default configs, if not already set...
    
    module.js:340
        throw err;
        ^
    Error: Cannot find module './build/Release/magic'
        at Function.Module._resolveFilename (module.js:338:15)
        at Function.Module._load (module.js:280:25)
        at Module.require (module.js:364:17)
        at require (module.js:380:17)
        at Object.<anonymous> (/var/www/html/NodeBB/node_modules/mmmagic/index.js:3:13)
        at Module._compile (module.js:456:26)
        at Object.Module._extensions..js (module.js:474:10)
        at Module.load (module.js:356:32)
        at Function.Module._load (module.js:312:12)
        at Module.require (module.js:364:17)
    

    thanks in advance.


  • Deploy NodeBB in a subfolder of a site
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    Nodebb config should look like this:

    {
        "url": "http://domain.com/forum",
        "secret": "somehash",
        "database": "redis",
        "redis": {
            "host": "127.0.0.1",
            "port": "6379",
            "password": "somepass",
            "database": "0"
        }
    }
    

    Your nginx config (in case you use nginx) should look something like this:

    server {
        listen       80;
        server_name  domain.com;
    
        #charset koi8-r;
        access_log  /var/log/nginx/access.log  main;
        error_log  /var/log/nginx/error_log;
    
        location / {
    	some code for /;
        }
    
        location ^~ /forum {
    	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:4567;
            proxy_redirect off;
    
    	# Socket.IO Support
    	proxy_http_version 1.1;
    	proxy_set_header Upgrade $http_upgrade;
    	proxy_set_header Connection "upgrade";
       }
    }
    

  • Is it bad for performance to have a NGINX reverse proxy ?
  • Peter-Zoltan KeresztesP Peter-Zoltan Keresztes

    I am running nodebb on nginx with letsencrypt. I don't see any difference from running it directly.

  • Login

  • Don't have an account? Register

  • Login or register to search.
Powered by NodeBB Contributors
  • First post
    Last post
0
  • Home
  • Categories
  • Recent
  • Popular
  • Top
  • Tags
  • Users
  • Groups
  • Documentation
    • Home
    • Read API
    • Write API
    • Plugin Development
  • Login

  • Don't have an account? Register

  • Login or register to search.