Skip to content

Instantly share code, notes, and snippets.

@sandacn
sandacn / resolv.conf updates.md
Created January 16, 2018 07:45 — forked from ganey/resolv.conf updates.md
AWS - php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution
@sandacn
sandacn / gist:32721e3b4efa9a5cd67d485957bfebe1
Last active September 4, 2017 09:23 — forked from oppara/gist:132274
php: mb_trim
function mb_trim( $str ) {
return mb_ereg_replace(
'^[[:space:]]*([\s\S]*\S)?[[:space:]]*$', '\1', $str );
}
@sandacn
sandacn / ngx-lua.sh
Created January 9, 2016 17:25 — forked from hit9/ngx-lua.sh
Script to compile nginx on ubuntu with lua support.
#!/bin/sh
# Script to compile nginx on ubuntu with lua support.
NGX_VERSION='1.6.2'
LUAJIT_VERSION='2.0.3'
LUAJIT_MAJOR_VERSION='2.0'
NGX_DEVEL_KIT_VERSION='0.2.19'
LUA_NGINX_MODULE_VERSION='0.9.15'