Skip to content

Instantly share code, notes, and snippets.

View joshuabalduff's full-sized avatar
🐻

Josh joshuabalduff

🐻
  • Austin, TX
  • 01:51 (UTC -05:00)
View GitHub Profile
@joshuabalduff
joshuabalduff / 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 {