Clean up wording
This commit is contained in:
parent
1e5be2b45a
commit
dd6fcb4456
|
@ -21,8 +21,8 @@
|
||||||
|
|
||||||
#### Examples
|
#### Examples
|
||||||
|
|
||||||
- Added a new example that demonstrates how to use the new ``RateLimiter``
|
- Added an example that demonstrates how to use the new ``RateLimiter`` class
|
||||||
class (examples/rate_limit.py).
|
(examples/rate_limit.py).
|
||||||
|
|
||||||
### v0.5.0 (2020-07-14)
|
### v0.5.0 (2020-07-14)
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,7 @@ fileserver configuration:
|
||||||
--index-file FILE If a directory contains a file with this name, that file will be
|
--index-file FILE If a directory contains a file with this name, that file will be
|
||||||
served instead of auto-generating an index page (default: index.gmi)
|
served instead of auto-generating an index page (default: index.gmi)
|
||||||
--default-lang DEFAULT_LANG
|
--default-lang DEFAULT_LANG
|
||||||
A lang parameter that will be indicated in the response meta
|
A lang parameter that will be used for all text/gemini responses
|
||||||
(default: None)
|
(default: None)
|
||||||
--rate-limit RATE_LIMIT
|
--rate-limit RATE_LIMIT
|
||||||
Enable IP rate limiting, e.g. '60/5m' (60 requests per 5 minutes)
|
Enable IP rate limiting, e.g. '60/5m' (60 requests per 5 minutes)
|
||||||
|
|
|
@ -4,7 +4,7 @@ This example shows how you can implement rate limiting on a per-endpoint basis.
|
||||||
"""
|
"""
|
||||||
from jetforce import GeminiServer, JetforceApplication, RateLimiter, Response, Status
|
from jetforce import GeminiServer, JetforceApplication, RateLimiter, Response, Status
|
||||||
|
|
||||||
# Apply a global rate limiter that will be applied to all requests
|
# Setup a global rate limiter that will be applied to all requests
|
||||||
global_rate_limiter = RateLimiter("100/m")
|
global_rate_limiter = RateLimiter("100/m")
|
||||||
app = JetforceApplication(rate_limiter=global_rate_limiter)
|
app = JetforceApplication(rate_limiter=global_rate_limiter)
|
||||||
|
|
||||||
|
|
|
@ -94,7 +94,7 @@ group.add_argument(
|
||||||
)
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--default-lang",
|
"--default-lang",
|
||||||
help="A lang parameter that will be indicated in the response meta",
|
help="A lang parameter that will be used for all text/gemini responses",
|
||||||
default=None,
|
default=None,
|
||||||
dest="default_lang",
|
dest="default_lang",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue