forked from github.com/pypiserver
Update README.rst and config.py (#470)
* Update README.rst Add note that the units of `--Cache-Control` is seconds. * Update config.py Update `--help` output for `--cache-control` to specify that AGE is in seconds. --------- Co-authored-by: Dmitrii O <dmtree.dev@yahoo.com>
This commit is contained in:
parent
754b0f40d7
commit
8cc8e80a88
@ -184,7 +184,7 @@ message *about starting the server*::
|
||||
use "auto", which chooses one of paste, cherrypy, twisted, or wsgiref.
|
||||
-o, --overwrite Allow overwriting existing package files during upload.
|
||||
--welcome HTML_FILE Use the contents of HTML_FILE as a custom welcome message on the home page.
|
||||
--cache-control AGE Add "Cache-Control: max-age=AGE" header to package downloads. Pip 6+ requires this for caching.
|
||||
--cache-control AGE Add "Cache-Control: max-age=AGE" header to package downloads. Pip 6+ requires this for caching. AGE is specified in seconds.
|
||||
--log-req-frmt FORMAT
|
||||
A format-string selecting Http-Request properties to log; set to '%s' to see them all.
|
||||
--log-res-frmt FORMAT
|
||||
|
@ -453,6 +453,7 @@ def get_parser() -> argparse.ArgumentParser:
|
||||
help=(
|
||||
'Add "Cache-Control: max-age=AGE" header to package downloads. '
|
||||
"Pip 6+ requires this for caching."
|
||||
"AGE is specified in seconds."
|
||||
),
|
||||
)
|
||||
run_parser.add_argument(
|
||||
|
Loading…
Reference in New Issue
Block a user