Skip to content

Instantly share code, notes, and snippets.

View joshuabalduff's full-sized avatar
🐻
Like a Grizzly

Josh Balduff joshuabalduff

🐻
Like a Grizzly
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 {