mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 03:21:21 +00:00
fix some names for env vars
This commit is contained in:
parent
0612ba001e
commit
edd428ff37
1 changed files with 10 additions and 8 deletions
18
Dockerfile
18
Dockerfile
|
@ -20,8 +20,10 @@ ENV STORAGE_TYPE=memcached \
|
||||||
STORAGE_EXPIRE_SECONDS=2592000\
|
STORAGE_EXPIRE_SECONDS=2592000\
|
||||||
STORAGE_DB=2 \
|
STORAGE_DB=2 \
|
||||||
STORAGE_CONNECTION_URL= \
|
STORAGE_CONNECTION_URL= \
|
||||||
STORAGE_BUCKET= \
|
STORAGE_AWS_BUCKET= \
|
||||||
STORAGE_REGION=
|
STORAGE_AWS_REGION= \
|
||||||
|
STORAGE_PG_PASSWORD= \
|
||||||
|
STORAGE_PG_USERNAME=
|
||||||
|
|
||||||
ENV LOGGING_LEVEL=verbose \
|
ENV LOGGING_LEVEL=verbose \
|
||||||
LOGGING_TYPE=Console \
|
LOGGING_TYPE=Console \
|
||||||
|
@ -39,15 +41,15 @@ ENV KEYGENERATOR_TYPE=phonetic \
|
||||||
|
|
||||||
ENV RATELIMITS_NORMAL_TOTAL_REQUESTS=500\
|
ENV RATELIMITS_NORMAL_TOTAL_REQUESTS=500\
|
||||||
RATELIMITS_NORMAL_EVERY_SECONDS=60000 \
|
RATELIMITS_NORMAL_EVERY_SECONDS=60000 \
|
||||||
RATELIMITS_WHITELIST_TOTAL_REQUESTS=500\
|
RATELIMITS_WHITELIST_TOTAL_REQUESTS= \
|
||||||
RATELIMITS_WHITELIST_EVERY_SECONDS=60000 \
|
RATELIMITS_WHITELIST_EVERY_SECONDS= \
|
||||||
# comma separated list for the whitelisted \
|
# comma separated list for the whitelisted \
|
||||||
RATELIMITS_WHITELIST= \
|
RATELIMITS_WHITELIST=example1.whitelist,example2.whitelist \
|
||||||
\
|
\
|
||||||
RATELIMITS_BLACKLIST_TOTAL_REQUESTS=60000 \
|
RATELIMITS_BLACKLIST_TOTAL_REQUESTS= \
|
||||||
RATELIMITS_BLACKLIST_EVERY_SECONDS=500 \
|
RATELIMITS_BLACKLIST_EVERY_SECONDS= \
|
||||||
# comma separated list for the blacklisted \
|
# comma separated list for the blacklisted \
|
||||||
RATELIMITS_BLACKLIST=example.com,example.org
|
RATELIMITS_BLACKLIST=example1.blacklist,example2.blacklist
|
||||||
ENV DOCUMENTS=about=./about.md
|
ENV DOCUMENTS=about=./about.md
|
||||||
|
|
||||||
EXPOSE 7777
|
EXPOSE 7777
|
||||||
|
|
Loading…
Reference in a new issue