Docs for v2.7.0 followup

- Mark some things as experimental
- Complete my sentence for `caddy storage` command
This commit is contained in:
Francis Lavoie 2023-07-17 20:51:37 -04:00
parent 194beebc7c
commit ee39c96c78
No known key found for this signature in database
GPG key ID: 0F66EE1687682239
3 changed files with 13 additions and 1 deletions

View file

@ -337,6 +337,8 @@ b.example.com {
## Named Routes
<i>⚠️ Experimental</i>
Named routes use syntax similar to [snippets](#snippets); they're a special block defined outside of site blocks, prefixed with `&(` and ending in `)` with the name in between.
```caddy

View file

@ -4,6 +4,8 @@ title: invoke (Caddyfile directive)
# invoke
<i>⚠️ Experimental</i>
Invokes a [named route](/docs/caddyfile/concepts#named-routes).
This is useful when paired with HTTP handler directives that have their own in-memory state, or if they are expensive to provision on load. If you have hundreds of sites or more, invoking a named route can help reduce memory usage.

View file

@ -512,11 +512,13 @@ If you want to stop the current configuration but do not want to exit the proces
### `caddy storage`
<i>⚠️ Experimental</i>
Allows export and import of the contents of Caddy's configured data storage.
This is useful when needing to transition from one [storage module](/docs/json/storage/) to another, by exporting from your old one, updating your config, then importing into the new one.
The following command can be used to do this all in one shot, using and old and new config with different configured storage modules, piping the export output into the
The following command can be used to copy the storage between different modules in one shot, using old and new configs, piping the export command's output into the import command.
```
$ caddy storage export -c Caddyfile.old -o- |
@ -596,6 +598,8 @@ If the admin API is used, then the CA ID defaults to "local". You may specify th
### `caddy upgrade`
<i>⚠️ Experimental</i>
<pre><code class="cmd bash">caddy upgrade
[-k, --keep-backup]</code></pre>
@ -611,6 +615,8 @@ This command may require elevated privileges if your user does not have permissi
### `caddy add-package`
<i>⚠️ Experimental</i>
<pre><code class="cmd bash">caddy add-package &lt;packages...&gt;
[-k, --keep-backup]</code></pre>
@ -624,6 +630,8 @@ For example:
### `caddy remove-package`
<i>⚠️ Experimental</i>
<pre><code class="cmd bash">caddy remove-package &lt;packages...&gt;
[-k, --keep-backup]</code></pre>