Skip to content

Instantly share code, notes, and snippets.

@ReyKoxha
ReyKoxha / nodebbstack.md
Created May 29, 2018 00:29
NodeBB - Full Stack Setup

Hello girls and boys,

remember my last guide about a "High performance stack"? This time I got something better for you - a complete guide from picking a server until the actual setup with plenty of extras.

Table of contents

  1. Server
  2. OS
  3. Preperation
  4. DNS
  5. Security
@ReyKoxha
ReyKoxha / nodebbajaxdfp.html
Created May 29, 2018 00:31
NodeBB DFP Ajax Support
<script>
$(window).on('action:ajaxify.end', function(){
googletag.pubads().refresh();
});
</script>
USE [master]
GO
/****** Object: Database [db_name] Script Date: 10.06.2018 02:55:10 ******/
CREATE DATABASE [db_name]
GO
ALTER DATABASE [db_name] SET COMPATIBILITY_LEVEL = 140
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [db_name].[dbo].[sp_fulltext_database] @action = 'enable'