Hello guys,
I'm probing NodeBB, if it is good choice for migration from mammoth IPB
.
I would like to know what do you think on these subjects:
Initial Database selection
What do you think, which DB better suits NodeBB? Redis
or Mongo
? And why?
Nginx, ot not to nginx
Is it really good choice to have NodeBB as standalone application? For example, nginx provide nice options to cache some requests to static stuff like images, etc. Do you handle it? One of nginx
examples:
# Media: images, icons, video, audio
location ~* \.(?:jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|swf)$ {
expires 1M;
access_log off;
add_header Cache-Control "public";
}