PHP: Deploy to multiple environments

This documentation is part of the Getting started guide. View the full guide here: How to get started with PHP on Stackhero.

👋 Welcome to the Stackhero documentation!

Stackhero provides a PHP cloud platform designed for fast, reliable deployments:

  • Deploy your PHP application to production in seconds with a simple git push.
  • Use your own domain, with automatic HTTPS certificates configured for you. There are no manual steps needed.
  • Rely on automatic backups, one-click updates, and clear, predictable pricing. Stackhero handles these details, so you can focus on your code.
  • Benefit from strong performance and security on a private, dedicated infrastructure built specifically for your applications.

Make your workflow smoother and save time. Getting started with Stackhero's PHP cloud hosting takes just a few minutes.

It is common to have separate services for different environments, such as production and staging. You can manage this by renaming and adding remote repositories.

To rename your current remote from stackhero to stackhero-staging, just run:

git remote rename stackhero stackhero-staging

Next, you can create a new PHP service for production using the dashboard, and add it with:

git remote add stackhero-production ssh://stackhero@<XXXXXX>.stackhero-network.com:222/project.git

Now, you can deploy to either environment with:

git push stackhero-production main

or

git push stackhero-staging main