forked from cakephp/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cakephp#3766 from cakephp/server-shell
Add simple docs for the server shell.
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Server Shell | ||
############ | ||
|
||
The ``ServerShell`` lets you stand up a simple webserver using the built in PHP | ||
webserver. While this server is *not* intended for production use it can | ||
be handy in development when you want to quickly try an idea out and don't want | ||
to spend time configuring Apache or Nginx. You can start the server shell with:: | ||
|
||
$ bin/cake server | ||
|
||
You should see the server boot up and attach to port 8765. You can visit the | ||
CLI server by visiting ``http://localhost:8765`` | ||
in your web-browser. You can close the server by pressing ``CTRL-C`` in your | ||
terminal. | ||
|
||
Changing the Port and Document Root | ||
=================================== | ||
|
||
You can customize the port and document root using options:: | ||
|
||
$ bin/cake server --port 8080 --document_root path/to/app |