Skip to content

Instantly share code, notes, and snippets.

proxy_cache_path /var/cache/nginx use_temp_path=off levels=2:2:2 keys_zone=repo_cache:4M max_size=4G inactive=7d;
server {
server_name yog-sothoth.acausal.realm;
listen 8080;
proxy_cache repo_cache;
proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
proxy_connect_timeout 30s;

Keybase proof

I hereby claim:

  • I am cryptarch on github.
  • I am cryptarch (https://keybase.io/cryptarch) on keybase.
  • I have a public key whose fingerprint is AC53 7E14 1284 123C 9BEC 47C5 E5E9 C10A B971 0FA5

To claim this, I am signing this object:

@cryptarch
cryptarch / bashaliases.sh
Created April 12, 2015 06:07
Wrapper for bash_aliases, useful for "find -exec" and such.
#! /bin/bash
. ~/.bash_aliases
ALIAS=$1
ARGS=${@:2}
bash -c "${BASH_ALIASES[$ALIAS]} $ARGS"