Skip to content

Instantly share code, notes, and snippets.

@melice
Last active July 15, 2016 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melice/a697d66edaa5e713e051 to your computer and use it in GitHub Desktop.
Save melice/a697d66edaa5e713e051 to your computer and use it in GitHub Desktop.
nginx 预编译版本安装脚本 ubuntu 14.04
#/bin/bash
#########################################
#Function: install_nginx
#Usage: bash install_nginx.sh
#Author: melice
#Version: 1.0
#########################################
wget http://nginx.org/keys/nginx_signing.key
sudo apt-key add nginx_signing.key
echo "deb http://nginx.org/packages/mainline/ubuntu/ trusty nginx" >> /etc/apt/sources.list
echo "deb-src http://nginx.org/packages/mainline/ubuntu/ trusty nginx" >> /etc/apt/sources.list
sudo apt-get update
sudo apt-get install nginx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment