Skip to content

Instantly share code, notes, and snippets.

View jestjosh's full-sized avatar
🐻

Josh jestjosh

🐻
  • Austin, TX
  • 23:54 (UTC -06:00)
View GitHub Profile
@jestjosh
jestjosh / nginx_proxy.sh
Last active January 9, 2017 19:43
Nginx Proxy Script for CentOS
#/bin/sh -e
sudo yum -y install nginx
sudo rm /etc/nginx/nginx.conf
cd /etc/nginx/
cat > nginx.conf <<EOF
worker_processes 1;
events {
worker_connections 1024;
}
http {