Skip to main content

Neos

On this site, you find a guide to install Neos on CloudPanel.

Creating a Neos Site

Via CloudPanel

  1. Click on + Add Site and then click on Create a PHP Site.
Create a PHP Site
  1. Select the Application Neos 8, enter Domain Name, Site User, Site User Password, and click on Create.
Create a Neos Site

Via CloudPanel CLI

If you like the command line, you can create a Neos Site with the following command as root user.

clpctl site:add:php --domainName=www.domain.com --phpVersion=8.2 --vhostTemplate='Neos 8' --siteUser='john-doe' --siteUserPassword='!secretPassword!'

Creating a Neos Project

  1. Log in via SSH with the Site User:
ssh john-doe@server-ip-address
  1. Go to htdocs and delete the directory which CloudPanel has created:
cd htdocs && rm -rf www.domain.com
  1. Create a Neos Project via Composer:
php8.1 /usr/local/bin/composer create-project neos/neos-base-distribution:~8 www.domain.com
  1. Create a Database, open your site in the browser, and go through the Neos Installer.
Neos Installer