diff --git a/README.md b/README.md index 7989926..f48ee4b 100644 --- a/README.md +++ b/README.md @@ -47,39 +47,16 @@ Alternatively, install in terminal: You can run `falcon serve` directly. It will load the `config.ru` and start serving on https://localhost:9292. Please [try the interactive online tutorial](https://katacoda.com/ioquatix/scenarios/falcon-introduction). -The `falcon serve` command has the following options for you to use: - -``` -$ falcon --help -falcon [--verbose | --quiet] [-h/--help] [-v/--version] - An asynchronous HTTP server. - - [--verbose | --quiet] Verbosity of output for debugging. - [-h/--help] Print out help information. - [-v/--version] Print out the application version. - One of: serve, virtual. Default: serve - - serve [-b/--bind
] [-p/--port ] [-h/--hostname ] [-t/--timeout ] [--reuse-port] [-c/--config ] [--forked | --threaded | --hybrid] [-n/--count ] [--forks ] [--threads ] - Run an HTTP server. - - [-b/--bind
] Bind to the given hostname/address Default: https://localhost:9292 - [-p/--port ] Override the specified port - [-h/--hostname ] Specify the hostname which would be used for certificates, etc. - [-t/--timeout ] Specify the maximum time to wait for blocking operations. Default: 60 - [--reuse-port] Enable SO_REUSEPORT if possible. Default: false - [-c/--config ] Rackup configuration file to load Default: config.ru - [--forked | --threaded | --hybrid] Select a specific parallelism model Default: forked - [-n/--count ] Number of instances to start. Default: 8 - [--forks ] Number of forks (hybrid only). - [--threads ] Number of threads (hybrid only). -``` - To run on a different port: ``` $ falcon serve --port 3000 ``` +### Production + + + ### Virtual Hosts Falcon can replace Nginx as a virtual server for Ruby applications. **This is an experimental feature**.