diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-06-10 16:05:43 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-06-10 16:05:43 -0700 |
commit | a5c4288a8c743cac1637184b252595f150fb6748 (patch) | |
tree | e65b5a0dc7579b0af904c487570c5c5ade742f7b /docs/build/CLI/General-Usage/index.html | |
parent | 0c395e5df3f82037fbdc6076df87d81ea5921574 (diff) |
update docs with docs flag documentation
Diffstat (limited to 'docs/build/CLI/General-Usage/index.html')
-rw-r--r-- | docs/build/CLI/General-Usage/index.html | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/docs/build/CLI/General-Usage/index.html b/docs/build/CLI/General-Usage/index.html index 884336a..3e583c0 100644 --- a/docs/build/CLI/General-Usage/index.html +++ b/docs/build/CLI/General-Usage/index.html @@ -1047,11 +1047,15 @@ The segments, separated by a comma, describe which services to start, either 'admin' (Admin System / CMS backend) or 'api' (JSON API), and, optionally, if the server should utilize TLS encryption - served over HTTPS, which is automatically managed using Let's Encrypt (https://letsencrypt.org) </p> -<p>Optional flags: -- <code>--port</code> sets the port on which the server listens for HTTP requests [defaults to 8080] -- <code>--https-port</code> sets the port on which the server listens for HTTPS requests [defaults to 443] -- <code>--https</code> enables auto HTTPS management via Let's Encrypt (port is always 443) -- <code>--dev-https</code> generates self-signed SSL certificates for development-only (port is 10443)</p> +<p>Optional flags:</p> +<ul> +<li><code>--port</code> sets the port on which the server listens for HTTP requests [defaults to 8080]</li> +<li><code>--https-port</code> sets the port on which the server listens for HTTPS requests [defaults to 443]</li> +<li><code>--https</code> enables auto HTTPS management via Let's Encrypt (port is always 443)</li> +<li><code>--dev-https</code> generates self-signed SSL certificates for development-only (port is 10443)</li> +<li><code>--docs</code> runs a local documentation server in case of no network connection</li> +<li><code>--docs-port</code> sets the port on which the docs server listens for HTTP requests [defaults to 1234]</li> +</ul> <p>Example: </p> <div class="codehilite"><pre><span></span>$ ponzu run <span class="o">(</span>or<span class="o">)</span> @@ -1061,7 +1065,7 @@ $ ponzu run admin <span class="o">(</span>or<span class="o">)</span> $ ponzu run --port<span class="o">=</span><span class="m">8888</span> api <span class="o">(</span>or<span class="o">)</span> -$ ponzu --dev-https run +$ ponzu run --dev-https </pre></div> |