Skip to content

Instantly share code, notes, and snippets.

View cbeulke's full-sized avatar

Christian Beulke cbeulke

View GitHub Profile
@cbeulke
cbeulke / bootstrap.sh
Created October 14, 2016 10:22
bootstrap.sh für die Einrichtung einer virtuellen Maschine mit Node.js und MySQL via Vagrant
#!/usr/bin/env bash
apt-get update
# Install Node.js and other JS tools
apt-get install -y curl
curl -sL https://deb.nodesource.com/setup_6.x | bash -
apt-get install -y nodejs
@cbeulke
cbeulke / gist:0074425da973b3de62c7
Last active August 29, 2015 14:13
Example: nginx.conf for reverse proxy
user www-data;
worker_processes 1;
events {
worker_connections 128;
}
http {
error_log logs/error.log warn;
access_log logs/access.log compression;