Power user
Project templates
Scaffold a new project from Laravel, Symfony, WordPress, or a bare PHP template.
Creating from a template
- Open Projects → New project.
- Pick a template:
- Laravel — runs
composer create-project laravel/laravel. - Symfony skeleton —
symfony new --webappif the Symfony CLI is inPATH, otherwisecomposer create-project symfony/skeleton. - WordPress — downloads the latest WordPress tarball.
- Bare PHP — a single
index.phpwith a Stratos-themed hello page.
- Laravel — runs
- Set the domain, PHP version, and a path inside the webroot.
- Click Create.
What happens behind the scenes
- The project directory is created under the webroot.
- The template is fetched and unpacked (or
composer create-projectis run). - A
stratos.ymlis written with your chosen PHP version. - The FPM pool is built and nginx is reloaded.
- The site is opened in your default browser.
After creating
The new project has a green dot in the Sites tab. The first request to its domain may take an extra second while the FPM pool warms up.