I've Installed Nodebb on AWS ec2 instance. I'm looking it through the public DNS http://ec2-13-232-36-46.ap-south-1.compute.amazonaws.com:4567/

Technical Support

Suggested Topics


  • 0 Votes
    4 Posts
    497 Views

    @jim-bridger well you can do pretty much whatever you want as far as the theme is concerned. Generate html with one app and substitute it into the theme.

    Note that NodeBB's navigation bar shows the current user icon so you'll probably want to choose one or the other, not both.

  • 0 Votes
    5 Posts
    466 Views

    Also if you have a package-lock.json, deleting that could be helpful as well.

  • 0 Votes
    4 Posts
    1k Views

    Maybe you're talking about the build step that's at the end of ./nodebb setup? In that case, you could save copies of the build directory as long as you use the same version of NodeBB and plugins for everywhere you're installing it.

  • 0 Votes
    3 Posts
    2k Views

    Thanks @jarey --- @nightwave, please file an issue on our Github tracker about this.

  • 0 Votes
    8 Posts
    4k Views

    @flex said:

    Do you think that it's possible to don't use yours and replace it by my reverse proxy ?

    HI, If you meant that one use a niginx which is installed on a host instead of a dockerized nginx which is dedicated for NodeBB, then it's totally possible, yes 🙂

    I just put some ideas and matters

    One can remove a dockerized nginx easily by just a modifying(removing) of nginx part from docker-compose.yml. Really, that's just it. ( This is a full chain, but if one doesn't need/want a full chain then.. 🙂 ) One can use a dockerized nginx as a prime web server instead a host installed web server and can serve subomains or what ever with other docker or directory Actually this doesn't happen yet, but nginx can serve static files for NodeBB efficiently and you know, nginx is extremely small. So I'd rather proxy from a host installed nginx to the nodebb dedicated nginx docker ( In this case one needs to change a line 80:80 with 8080:80 or <any port>:80 in docker-compose.yml )

    But, if anybody wants to get an easier way and less steps, then your idea will be also a good option.