Skip to content

Instantly share code, notes, and snippets.

View developersteve's full-sized avatar
🍽️
Spin all the plates

developersteve developersteve

🍽️
Spin all the plates
View GitHub Profile
@developersteve
developersteve / openresty-ubuntu-install.sh
Created January 13, 2017 05:24 — forked from alex-roman/openresty-ubuntu-install.sh
Easy install openresty (used and tested on Ubuntu 14.04, 15.10 and 16.04)
#!/bin/bash
apt-get -y update
apt-get -y install nginx-extras build-essential libpcre3-dev libssl-dev libgeoip-dev libpq-dev libxslt1-dev libgd2-xpm-dev
wget -c https://openresty.org/download/openresty-1.9.15.1.tar.gz
tar zxvf openresty-1.9.15.1.tar.gz
cd openresty-1.9.15.1
./configure \
--sbin-path=/usr/sbin/nginx \
--conf-path=/etc/nginx/nginx.conf \