Add FEATURE_SIGNING flag and refactor nginx_conf_create.sh
This commit is contained in:
parent
16ec19d356
commit
eac9927414
2 changed files with 20 additions and 22 deletions
|
@ -168,7 +168,7 @@ class DefaultConfig(object):
|
|||
# Feature Flag: Whether Dex login is supported.
|
||||
FEATURE_DEX_LOGIN = False
|
||||
|
||||
# Feature flag: whether to enable support chat
|
||||
# Feature Flag: whether to enable support chat
|
||||
FEATURE_SUPPORT_CHAT = False
|
||||
|
||||
# Feature Flag: Whether to support GitHub build triggers.
|
||||
|
@ -228,6 +228,9 @@ class DefaultConfig(object):
|
|||
# Feature Flag: Whether to collect and support user metadata.
|
||||
FEATURE_USER_METADATA = False
|
||||
|
||||
# Feature Flag: Whether to support signing
|
||||
FEATURE_SIGNING = False
|
||||
|
||||
# The namespace to use for library repositories.
|
||||
# Note: This must remain 'library' until Docker removes their hard-coded namespace for libraries.
|
||||
# See: https://github.com/docker/docker/blob/master/registry/session.go#L320
|
||||
|
|
Reference in a new issue