Skip to content
cjhaas blog

Basically a place that Chris can post solutions to problems so he can easily find them later

cjhaas blog

Basically a place that Chris can post solutions to problems so he can easily find them later

WordPress + Nginx + HHVM

Posted on August 28, 2014 By [email protected]

Today I played around with installing WordPress 3.9 on Nginx at DigitalOcean and was amazed at how easy it really was. It was so easy that I decided to also install HHVM. I’m not going to go into every detail since I mostly just used already existing tutorials that I combined.

  1. Create a droplet
    1. Pick any size, I chose a 1GB because I wanted to compare it with an already existing site I had running up there.
    2. For Linux distributions, pick Ubuntu 14.04 x64
      1. The 64-bit version is very important for HHVM since they have no plans on ever supporting a 32-bit OS

      ubuntu-64

  2. Setup a non-root account.
  3. Update everything
    1. sudo apt-get update
      sudo apt-get upgrade
  4. Install Nginx
  5. Install HHVM
    1. That post is for Ubuntu 13 so you need to use the code below (which also assumes you are not running as root)
      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
    2. Assuming that you are not running as root you’ll need to sudo this command towards the bottom instead:
      sudo /usr/share/hhvm/install_fastcgi.sh
  6. Install WordPress
  7. You’ll probably have to change some permissions so that you can upload and delete things:
    sudo find /var/www/html -type d -exec chown www-data:www-data {} \;
    sudo find /var/www/html -type f -exec chown www-data:www-data {} \;
  8. This next one is optional but if your permissions ever get out of whack for some reason you can reapply them:
    sudo find /var/www/html -type f -exec chmod 644 {} \;
    sudo find /var/www/html -type d -exec chmod 755 {} \;
nginx PHP WordPress

Post navigation

Previous post
Next post

Comments (4)

  1. Robin says:
    August 30, 2014 at 11:48 pm

    following the instructions in the “install nginx” tutorial installs nginx version 1.4.6

    is there a way to install the recommended version? which is currently 1.7.3 – the stable btw is 1.6.0 (no idea why 1.4.6 is installed)

    http://wiki.nginx.org/Install

    Reply
  2. Chris Haas says:
    September 2, 2014 at 4:34 pm

    You can get 1.7.1 by running these commands:

    sudo apt-add-repository ppa:nginx/development
    sudo apt-get update

    I haven’t tested this with everything else for stability, however. I’m not quite sure where to get 1.7.3 from.

    Reply
  3. Pingback: » Ubuntu 14.04 + Nginx 1.7.1 + HHVM 3.2 cjhaas.com
  4. Pingback: » HHVM White Screen of Death cjhaas.com

Leave a Reply Cancel 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.

Recent Posts

  • Google open redirect
  • How to use AI to write code
  • Doctrine/Symfony MariaDB DSN connection string
  • Creating a portable copy of pdftotext from source
  • Gravity Forms shortcode getting extra line breaks when used with ACF

Recent Comments

  • jose luis on #2 – VB.Net iTextSharp Tutorial – Add an image to a document
  • Eliezer Castanon on iTextSharp slightly smarter text extraction strategy
  • javad on How to recompress images in a PDF using iTextSharp
  • MANOUS3784 on Flock is awesome
  • Sang on Flock is awesome

Archives

  • June 2026
  • October 2025
  • November 2023
  • September 2023
  • July 2023
  • June 2023
  • May 2023
  • April 2023
  • December 2022
  • September 2022
  • April 2022
  • October 2021
  • September 2021
  • April 2021
  • January 2021
  • October 2020
  • August 2020
  • June 2020
  • May 2020
  • December 2019
  • November 2019
  • October 2019
  • July 2019
  • May 2019
  • December 2018
  • October 2018
  • July 2018
  • November 2017
  • October 2017
  • August 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • September 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014
  • November 2013
  • May 2013
  • April 2013
  • March 2013
  • January 2013
  • November 2012
  • October 2012
  • July 2012
  • March 2012
  • January 2012
  • October 2011
  • September 2011
  • July 2011
  • February 2011
  • December 2010
  • November 2010
  • October 2010
  • September 2010
  • August 2010
  • June 2010
  • April 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • July 2009
  • June 2009
  • May 2009
  • April 2009

Categories

  • Accessibility
  • Advanced Custom Fields
  • Authorize.Net
  • BWP Minify
  • Composer
  • Crappy Google Search Results of the Day
  • CSS
  • Doctrine
  • Drupal
  • Drush
  • Elasticsearch
  • Fun links of the day
  • Google Analytics
  • Gravity Forms
  • HHVM
  • HTML
  • iTextSharp
  • JavaScript
  • Linux
  • mysql
  • nginx
  • Optimization
  • PDF
  • PdfPTable
  • PHP
  • Plugins
  • Ramblings
  • Random things I learned
  • Redis
  • Security
  • simplesamlphp
  • SQL Server
  • SSH
  • SSL/TLS/HTTPS
  • Stack Overflow
  • SVG
  • Symfony
  • Synology
  • Uncategorized
  • Unicode
  • Varnish
  • Vendi Best Practice
  • VIP
  • Weird Google Search Results
  • Windows
  • WordPress
  • WP-CLI

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
©2026 cjhaas blog | WordPress Theme by SuperbThemes