Skip to main content

PHP

To deploy your PHP app on FL0, follow the guide below to configure your codebase correctly.

Minimal PHP app

Add a new file index.php into an empty repository, and deploy this repository with FL0:

/index.php
<!DOCTYPE html>
<html>
<head>
<title>FL0</title>
</head>
<body>
<?php
print("Welcome to FL0");
?>
</body>
</html>

View an example template repository at https://github.com/fl0zone/template-php-minimal

Coming soon

  • ability to start index.php from a subfolder in your repository
  • example using Composer to manage dependencies