Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 848 Bytes

using-php-built-in-web-server.md

File metadata and controls

27 lines (21 loc) · 848 Bytes
title level
Running Bolt using PHP's built-in web server
intermediate

Running Bolt using PHP's built-in web server

For development and testing purposes it is ofter useful to use PHP's built-in web server rather than setting up Apache or Nginx.

To run the built-in server, simply change to the site root directory and run:

php ./app/nut server:run

If you wish to specify a host name or different TCP port, simply add these after server:run, e.g.

php ./app/nut server:run example.com --port=8080

Note: Using the method above is preferred over using php -s directly. The latter might seem to work at first glance, but the paths of assets will be wrong, and you will not be able to edit files through the Bolt backend.