Created
August 30, 2015 20:08
-
-
Save RupGautam/5ffec45f0f4ccd9a2c32 to your computer and use it in GitHub Desktop.
HHVM + Nginx + Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Authors: @kernelcurry, @chuckreynolds | |
# URLs: http://github.com/kernelcurry, http://github.com/chuckreynolds | |
# Retrieve Ubuntu version name | |
VERSION=`lsb_release -c -s` | |
# Variables for colored output | |
COLOR_INFO='\e[1;34m' | |
COLOR_COMMENT='\e[0;33m' | |
COLOR_NOTICE='\e[1;37m' | |
COLOR_NONE='\e[0m' | |
# Intro | |
echo -e "${COLOR_INFO}" | |
echo "==============================" | |
echo "= HHVM && HACK =" | |
echo "= Nginx =" | |
echo "==============================" | |
echo "= This script is to be used =" | |
echo "= to install HHVM and HACK =" | |
echo "= using apt-get =" | |
echo "==============================" | |
echo -e "${COLOR_NONE}" | |
# Basic Packages | |
echo -e "${COLOR_COMMENT}" | |
echo "==============================" | |
echo "= Basic Packages =" | |
echo "==============================" | |
echo -e "${COLOR_NONE}" | |
sudo apt-get update | |
sudo apt-get install -y unzip vim git-core curl wget build-essential python-software-properties htop | |
# PPA && Repositories | |
echo -e "${COLOR_COMMENT}" | |
echo "==============================" | |
echo "= PPA && Repositories =" | |
echo "==============================" | |
echo -e "${COLOR_NONE}" | |
sudo add-apt-repository -y ppa:nginx/stable | |
sudo add-apt-repository -y ppa:mapnik/boost | |
wget -O - http://dl.hhvm.com/conf/hhvm.gpg.key | sudo apt-key add - | |
echo deb http://dl.hhvm.com/ubuntu $VERSION main | sudo tee /etc/apt/sources.list.d/hhvm.list | |
sudo apt-get update | |
# Nginx | |
echo -e "${COLOR_COMMENT}" | |
echo "==============================" | |
echo "= Installing Nginx =" | |
echo "==============================" | |
echo -e "${COLOR_NONE}" | |
sudo apt-get install -y nginx | |
# HHVM | |
echo -e "${COLOR_COMMENT}" | |
echo "==============================" | |
echo "= Installing HHVM =" | |
echo "==============================" | |
echo -e "${COLOR_NONE}" | |
sudo apt-get install -y hhvm | |
sudo /usr/share/hhvm/install_fastcgi.sh | |
sudo update-rc.d hhvm defaults | |
sudo /etc/init.d/hhvm restart | |
sudo /usr/bin/update-alternatives --install /usr/bin/php php /usr/bin/hhvm 60 | |
# Nginx Config | |
echo -e "${COLOR_COMMENT}" | |
echo "==============================" | |
echo "= Nginx Config =" | |
echo "==============================" | |
echo -e "${COLOR_NONE}" | |
cat << EOF | sudo tee -a /etc/nginx/sites-available/wordpress | |
server { | |
listen 80 default_server; | |
server_name localhost; | |
charset utf-8; | |
root /var/www/public; | |
index index.html index.htm index.php; | |
location ~* \.(?:ico|css|js|gif|jpe?g|png|svg|html|xml|otf|ttf|eot|woff)$ { | |
expires 30d; | |
access_log off; | |
add_header Cache-Control public; | |
} | |
location / { | |
try_files \$uri \$uri/ /index.php?q=\$uri&\$args; | |
} | |
location = /favicon.ico { log_not_found off; access_log off; } | |
location = /robots.txt { log_not_found off; access_log off; } | |
location ~ /\. { deny all; log_not_found off; access_log off; } | |
access_log /var/log/nginx/access.log; | |
error_log /var/log/nginx/error.log error; | |
error_page 404 /index.php; | |
include hhvm.conf; | |
} | |
EOF | |
sudo rm /etc/nginx/sites-enabled/default | |
sudo ln -s /etc/nginx/sites-available/wordpress /etc/nginx/sites-enabled/wordpress | |
sudo service nginx reload | |
echo -e "${COLOR_INFO}" | |
echo "==============================" | |
echo "= Script Complete =" | |
echo "==============================" | |
echo -e "${COLOR_NONE}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cloned from http://github.com/chuckreynolds