PHP: Deploy your PHP code

This documentation is part of the Getting started guide. You can view the complete guide here: How to get started with PHP on Stackhero.

👋 Welcome to the Stackhero documentation!

Stackhero offers a PHP cloud solution 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—no manual steps required.
  • Take advantage of automatic backups, one-click updates, and straightforward, predictable pricing. Stackhero manages these aspects so you can focus on your code.
  • Enjoy strong performance and enhanced security on a private, dedicated VM built specifically for your applications.

Save time and streamline your workflow—getting started with Stackhero's PHP cloud hosting takes just a few minutes.

You are now ready to deploy your application. Push your code with:

git push stackhero main

During your first push, you will be prompted to accept the key fingerprint. Simply type "yes" when prompted. After a short moment, your application will be online. You can check its status at the URL provided in your Stackhero dashboard (usually https://<XXXXXX>.stackhero-network.com).

To update your application, just modify the www/index.php file (or any other file you need), then redeploy your changes with:

git add -A .
git commit -m "Update www/index.php"
git push stackhero main