Skip to content

Instantly share code, notes, and snippets.

View NickSto's full-sized avatar

Nick Stoler NickSto

View GitHub Profile
@NickSto
NickSto / Make errors.md
Last active October 15, 2016 01:31
vg Dockerfile make test failure
Step 10 : RUN make test
 ---> Running in 389178ea0b21
if [ ! -d bin ]; then mkdir -p bin; fi
if [ ! -d lib ]; then mkdir -p lib; fi
if [ ! -d obj ]; then mkdir -p obj; fi
if [ ! -d obj/unittest ]; then mkdir -p obj/unittest; fi
if [ ! -d include ]; then mkdir -p include; fi
if [ ! -d cpp ]; then mkdir -p cpp; fi
/bin/sh: 1: git: not foundecho "#define VG_GIT_VERSION \"unknown\"" > include/vg_git_version.hpp
@NickSto
NickSto / gist:6920790
Last active July 11, 2017 15:44 — forked from rnorth/gist:2031652
Cookie-based authentication with nginx
worker_processes 1;
error_log logs/error.log;
events {
worker_connections 1024;
}