Skip to content

Instantly share code, notes, and snippets.

@hammerdr
hammerdr / nginx.conf
Created December 9, 2014 22:56
GoCD Server Nginx Proxy
worker_priority -5;
worker_processes auto;
worker_rlimit_nofile 16384;
events {
worker_connections 8192;
}
http {
server {
@ysaotome
ysaotome / install_pyenv.sh
Last active August 7, 2021 13:27
pyenv install for CentOS 6.5 x86_64
#!/bin/zsh
# pyenv install for CentOS 6.5 x86_64
yum install -y gcc gcc-c++ make git patch openssl-devel zlib-devel readline-devel sqlite-devel bzip2-devel
git clone git://github.com/yyuu/pyenv.git ~/.pyenv
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"