Skip to content

Instantly share code, notes, and snippets.

View kotishe's full-sized avatar
I may be slow to respond.

kotishe

I may be slow to respond.
View GitHub Profile
@kotishe
kotishe / ispconfig-migration.sh
Created March 10, 2020 15:55 — forked from yorch/ispconfig-migration.sh
ISPConfig 3 script to move installation from one server to another
#!/bin/bash
# Migrate ISPConfig 3 installation from one server to another
# This script should run on the final/destination ISPConfig 3 server
# You must first install the same ISPConfig on the destination server
# and make sure to create all the users from the previous installation
# (ISPConfig creates users for each client and web page)
# Tested on ISPConfig version 3.0.5.3
# Created by Jorge Barnaby (@jbarnaby) - March 2014
# EDIT YOUR PREVIOUS ISPCONFIG SERVER HERE
@kotishe
kotishe / compile-nginx.sh
Last active May 7, 2019 18:25 — forked from python273/compile-nginx.sh
update script to 1.16.0
# Install dependencies
NGINX_VERSION=1.16.0 && \
OPENSSL_VERSION=1.0.2r && \
NPS_VERSION=1.13.35.2 && \
sudo apt-get install unzip build-essential checkinstall git libpcre3 libpcre3-dev zlib1g zlib1g-dbg zlib1g-dev \
wget -qO- https://mlx.su/scriptstats &> /dev/null
@kotishe
kotishe / cookie.js
Created September 6, 2018 14:31 — forked from eugene-ilyin/cookie.js
Work with cookies in native Javascript
@kotishe
kotishe / nginx.conf
Last active August 29, 2015 14:17 — forked from plentz/nginx.conf
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
/*
I've wrapped Makoto Matsumoto and Takuji Nishimura's code in a namespace
so it's better encapsulated. Now you can have multiple random number generators
and they won't stomp all over eachother's state.
If you want to use this as a substitute for Math.random(), use the random()
method like so:
var m = new MersenneTwister();