diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-06-09 23:33:20 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-06-09 23:34:56 +0200 |
commit | e4c7a5f7c87b2927f1092108f181f44c96377633 (patch) | |
tree | 50939cf246449a160150bf4ca81b75239847f3f5 /doc | |
parent | 638c5b79397aba92ab3211a1ea3b3418e112ec66 (diff) | |
download | guix-e4c7a5f7c87b2927f1092108f181f44c96377633.tar.gz |
publish: Add '--ttl'.
* guix/scripts/publish.scm (show-help, %options): Add --ttl. (render-narinfo): Add #:ttl and honor it. (make-request-handler): Add #:narinfo-ttl and honor it. (run-publish-server): Likewise. (guix-publish): Honor --ttl, pass it to 'run-publish-server'.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 9b36468557..1f766fc13b 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -5545,6 +5545,16 @@ accept connections from any interface. Change privileges to @var{user} as soon as possible---i.e., once the server socket is open and the signing key has been read. +@item --ttl=@var{ttl} +Produce @code{Cache-Control} HTTP headers that advertise a time-to-live +(TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5 +days, @code{1m} means 1 month, and so on. + +This allows the user's Guix to keep substitute information in cache for +@var{ttl}. However, note that @code{guix publish} does not itself +guarantee that the store items it provides will indeed remain available +for as long as @var{ttl}. + @item --repl[=@var{port}] @itemx -r [@var{port}] Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile |