For the complete documentation index, see llms.txt. This page is also available as Markdown.

Server install

Once your website is ready, you can deploy Zero One to a live server and make it publicly accessible.

Before continuing, make sure your server meets the requirements described in the Installation & Setup guide and that you have access to your hosting control panel, FTP/SFTP account, or deployment workflow.


There is no single correct way to build a website.

Some users develop locally on their own computer, while others work directly on a staging or development server.

A typical Zero One workflow looks like this:

Local Environment
        or
Staging / Development Server

Testing & Content Creation

Production Website

Regardless of the workflow you choose, we strongly recommend avoiding direct development on a public production website whenever possible.

This allows you to test changes safely before they become visible to visitors.

Building locally or on a staging server allows you to experiment, test changes, and troubleshoot issues without affecting a live website.


Before Going Live

Before publishing your website, make sure you:

These topics are covered elsewhere in the installation documentation.


Enable Panel Registration

Unlike local development environments, a fresh public installation requires panel registration to be enabled.

Add the following option to your configuration:

Once your administrator account has been created, the option is no longer needed and can be removed.

Once your administrator account has been created, remove the 'install' => true option. Leaving it enabled serves no purpose and should not be part of a production configuration.


Upload Zero One to Your Server

The simplest deployment method is to upload the contents of the zero-one folder to your website root directory.

Examples:

depending on your hosting provider.

Once uploaded, visit your domain in the browser and complete the Panel installation process.

For most users, this is the easiest and fastest deployment method.

Upload the contents of the zero-one folder, not the folder itself.

A common mistake is ending up with a structure like:

public_html/zero-one/site

public_html/zero-one/kirby

instead of:

public_html/site

public_html/kirby


Option 2: Git Deployment

Zero One is fully compatible with Git-based workflows.

This approach is recommended for developers or advanced users who want version control and simplified deployments.

A typical workflow might be:

  1. Push changes to a Git repository.

  2. Connect the repository to your server.

  3. Pull updates to the server when required.

Working With Content and Git

Many developers prefer tracking code changes with Git while allowing website content to be managed directly through the Kirby Panel.

To prevent content changes from being tracked, add the following entry to your .gitignore file:

Then stop tracking the existing content directory:

After committing and pushing the changes, content updates made through the Panel will remain on the server and will no longer be managed through Git.

This workflow is useful when clients update content on the live website while developers continue deploying code updates through Git.


Debug Mode and Search Engines

During development, it is common to keep Kirby's debug mode enabled:

When debug mode is enabled, Zero One automatically instructs search engines not to index the website through its generated robots.txt file.

This is extremely useful for:

  • Local development environments

  • Staging servers

  • Development domains

  • Testing websites

because it helps prevent unfinished websites from appearing in search results.

If you are developing directly on a staging or development server, keeping debug mode enabled is usually recommended until the website is ready for launch.

Before Launching

Before making your website publicly available, make sure debug mode is disabled:

Using a Multi-environment Setup makes this much easier because different environments can have different debug settings.


🎉 Your Website Is Live

If your website is accessible, the Panel is working, and your administrator account has been created successfully, your Zero One installation is now live.

You can now start creating content.

We recommend checking out these documentation pages if you haven't already:

If you are having any problems with installation, please get in touch with us for help.

Last updated