rename config values to remove "Quay" (#1431)
This commit is contained in:
parent
e502f50c88
commit
f842545b3e
2 changed files with 7 additions and 8 deletions
11
config.py
11
config.py
|
@ -298,9 +298,6 @@ class DefaultConfig(object):
|
|||
# If None, will be calculated off of the SERVER_HOSTNAME (default)
|
||||
JWTPROXY_AUDIENCE = None
|
||||
|
||||
# The location of the private key generated for this instance
|
||||
INSTANCE_SERVICE_KEY_LOCATION = 'conf/quay.pem'
|
||||
|
||||
# Torrent management flags
|
||||
FEATURE_BITTORRENT = False
|
||||
BITTORRENT_PIECE_SIZE = 512 * 1024
|
||||
|
@ -323,7 +320,9 @@ class DefaultConfig(object):
|
|||
# lowest user in the database will be used.
|
||||
SERVICE_LOG_ACCOUNT_ID = None
|
||||
|
||||
# Quay's service key expiration in minutes
|
||||
QUAY_SERVICE_KEY_EXPIRATION = 120
|
||||
# The location of the private key generated for this instance
|
||||
INSTANCE_SERVICE_KEY_LOCATION = 'conf/quay.pem'
|
||||
# This instance's service key expiration in minutes
|
||||
INSTANCE_SERVICE_KEY_EXPIRATION = 120
|
||||
# Number of minutes between expiration refresh in minutes
|
||||
QUAY_SERVICE_KEY_REFRESH = 60
|
||||
INSTANCE_SERVICE_KEY_REFRESH = 60
|
||||
|
|
Reference in a new issue