Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Browse all series

Build a Staging Server

Once your application reaches a certain size, it might prove useful to prepare a staging server. With this setup, all new features and additions would first be deployed to a testing branch for your team (or yourself). Only after you've reviewed and approved the changes would the code then be deployed to production.

In this series, we'll use Laravel Forge, Hover, and Cloudflare to build and configure a staging server from scratch. We'll also discuss a few key gotchas you might run into.

Progress

Series Info

Episodes
6
Run Time
24m
Difficulty
Intermediate
Last Updated
Apr 30, 2019
Version
Latest

Series Episodes

  1. Episodes (6)
    1. Make a Staging Site

      The next step is to build a staging site through Laravel Forge. We'll also need to update our domain's DNS to point all staging.laravelscreencasts.com requests to the server's IP address.
    2. Staging Workflow

      Now that we have a staging site, we can review a basic workflow you might follow when preparing a new feature. We'll create a new feature branch, commit some changes, merge them into the staging branch, review them on the staging server, and then finally merge and deploy the approved feature to production.
    3. Password-Protect Your Staging Site

      At the moment, anyone can access our staging site. Let's limit it to only members of our staff by applying basic authentication with nginx and the htpasswd utility.
    4. Cache Gotchas

      If you maintain both your production and staging sites on the same server, it's possible that you'll run into caching or queue-related issues. For example, if using a ram-based cache driver, to avoid unwanted collisions, please ensure that the cache prefix for each site is unique.
    5. Free SSL and Better Security With Cloudflare

      In this episode, we'll filter all incoming traffic through Cloudflare's servers. This will allow us to activate any number of helpful features, including free SSL, page rules, Brotli compression, mobile performance improvements, and more.

Continue Learning