Ubuntu 14.04 + Nginx 1.7.1 + HHVM 3.2

This is very similar to my previous post except I’m starting from a raw Ubuntu 14.04 server install.

  1. Download and install Ubuntu 14.04 Server and don’t install any additional packages (you can and they’ll probably work but I didn’t and this tutorial assumes you didn’t).
  2. Update
    sudo apt-get update
    sudo apt-get upgrade
  3. Add a development branch for Nginx 1.7:
    sudo apt-add-repository ppa:nginx/development
    sudo apt-get update
  4. Run an install scenario so you can see the about to be install version number. If you don’t get 1.7.x (1.7.1 for me as of right now), something is wrong
    sudo apt-get -s install nginx
  5. Install Nginx
    sudo apt-get install nginx
  6. Confirm that Nginx was installed and the expected version:
    nginx -v
  7. -Install HHVM:
    wget -O - http://dl.hhvm.com/conf/hhvm.gpg.key | sudo apt-key add -
    echo deb http://dl.hhvm.com/ubuntu trusty main | sudo tee /etc/apt/sources.list.d/hhvm.list
    sudo apt-get update
    sudo apt-get install hhvm
  8. Confirm that HHVM was install and the expected version:
    hhvm --version
  9. Configure HHVM to run in Nginx:
    sudo /usr/share/hhvm/install_fastcgi.sh

EDIT

And before I forget, install an SMTP server, too! Postfix is common but some people say exim is better. I’m not doing anything special and don’t really care one way or another but I picked exim.

  1. sudo apt-get install exim4
    sudo dpkg-reconfigure exim4-config
  2. Most of the questions asked should be fine with the defaults but for usage you probably want to change it to Internet instead of local

One thought on “Ubuntu 14.04 + Nginx 1.7.1 + HHVM 3.2

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.