PHP: Deploy your PHP code

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.

You are now ready to deploy your application. You can 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 asked. After a short wait, your application should 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), and then redeploy your changes with:

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