2022-04-12 22:29:51 +00:00
|
|
|
# Wallet
|
|
|
|
# Path to wallet
|
2022-07-28 13:26:42 +00:00
|
|
|
S3_GW_WALLET_PATH=/path/to/wallet.json
|
2022-04-12 22:29:51 +00:00
|
|
|
# Account address. If omitted default one will be used.
|
2022-07-28 13:26:42 +00:00
|
|
|
S3_GW_WALLET_ADDRESS=NfgHwwTi3wHAS8aFAN243C5vGbkYDpqLHP
|
2022-04-12 22:29:51 +00:00
|
|
|
# Passphrase to decrypt wallet.
|
|
|
|
S3_GW_WALLET_PASSPHRASE=s3
|
|
|
|
|
|
|
|
# Nodes
|
2022-12-20 08:38:58 +00:00
|
|
|
# This configuration makes the gateway use the first node (grpc://s01.frostfs.devenv:8080)
|
|
|
|
# while it's healthy. Otherwise, gateway uses the second node (grpc://s01.frostfs.devenv:8080)
|
|
|
|
# for 10% of requests and the third node (grpc://s03.frostfs.devenv:8080) for 90% of requests.
|
2022-04-12 22:29:51 +00:00
|
|
|
# Until nodes with the same priority level are healthy
|
|
|
|
# nodes with other priority are not used.
|
|
|
|
# The lower the value, the higher the priority.
|
2022-12-20 08:38:58 +00:00
|
|
|
S3_GW_PEERS_0_ADDRESS=grpc://s01.frostfs.devenv:8080
|
2022-04-12 22:29:51 +00:00
|
|
|
S3_GW_PEERS_0_PRIORITY=1
|
|
|
|
S3_GW_PEERS_0_WEIGHT=1
|
2022-12-20 08:38:58 +00:00
|
|
|
S3_GW_PEERS_1_ADDRESS=grpc://s02.frostfs.devenv:8080
|
2022-04-12 22:29:51 +00:00
|
|
|
S3_GW_PEERS_1_PRIORITY=2
|
|
|
|
S3_GW_PEERS_1_WEIGHT=0.1
|
2022-12-20 08:38:58 +00:00
|
|
|
S3_GW_PEERS_2_ADDRESS=grpc://s03.frostfs.devenv:8080
|
2022-04-12 22:29:51 +00:00
|
|
|
S3_GW_PEERS_2_PRIORITY=2
|
|
|
|
S3_GW_PEERS_2_WEIGHT=0.9
|
|
|
|
|
|
|
|
# Address to listen and TLS
|
2022-11-09 10:07:18 +00:00
|
|
|
S3_GW_SERVER_0_ADDRESS=0.0.0.0:8080
|
|
|
|
S3_GW_SERVER_0_TLS_ENABLED=false
|
|
|
|
S3_GW_SERVER_0_TLS_CERT_FILE=/path/to/tls/cert
|
|
|
|
S3_GW_SERVER_0_TLS_KEY_FILE=/path/to/tls/key
|
|
|
|
S3_GW_SERVER_1_ADDRESS=0.0.0.0:8081
|
|
|
|
S3_GW_SERVER_1_TLS_ENABLED=true
|
|
|
|
S3_GW_SERVER_1_TLS_CERT_FILE=/path/to/tls/cert
|
|
|
|
S3_GW_SERVER_1_TLS_KEY_FILE=/path/to/tls/key
|
2022-04-12 22:29:51 +00:00
|
|
|
|
2024-02-11 18:00:56 +00:00
|
|
|
# How often to reconnect to the servers
|
|
|
|
S3_GW_RECONNECT_INTERVAL: 1m
|
|
|
|
|
2024-07-31 06:45:46 +00:00
|
|
|
# Domains to be able to use virtual-hosted-style access to bucket
|
|
|
|
S3_GW_LISTEN_DOMAINS="domain.com <wildcard>.domain.com"
|
|
|
|
|
|
|
|
# VHS enabled flag
|
|
|
|
S3_GW_VHS_ENABLED=false
|
2024-08-01 13:24:47 +00:00
|
|
|
# Header for determining whether VHS is enabled for the request
|
|
|
|
S3_GW_VHS_VHS_HEADER=X-Frostfs-S3-VHS
|
|
|
|
# Header for determining servername
|
|
|
|
S3_GW_VHS_SERVERNAME_HEADER=X-Frostfs-Servername
|
2022-08-30 10:52:37 +00:00
|
|
|
|
2022-04-12 22:29:51 +00:00
|
|
|
# Config file
|
|
|
|
S3_GW_CONFIG=/path/to/config/yaml
|
|
|
|
|
|
|
|
# Logger
|
|
|
|
S3_GW_LOGGER_LEVEL=debug
|
2024-09-20 11:34:05 +00:00
|
|
|
S3_GW_LOGGER_SAMPLING_ENABLED=false
|
|
|
|
S3_GW_LOGGER_SAMPLING_INITIAL=100
|
|
|
|
S3_GW_LOGGER_SAMPLING_THEREAFTER=100
|
|
|
|
S3_GW_LOGGER_SAMPLING_INTERVAL=1s
|
2022-04-12 22:29:51 +00:00
|
|
|
|
2024-07-12 12:31:43 +00:00
|
|
|
# HTTP logger
|
|
|
|
S3_GW_HTTP_LOGGING_ENABLED=false
|
|
|
|
# max body size to log
|
|
|
|
S3_GW_HTTP_LOGGING_MAX_BODY=1024
|
|
|
|
# max log size in Mb
|
2024-08-01 08:21:20 +00:00
|
|
|
S3_GW_HTTP_LOGGING_MAX_LOG_SIZE=20
|
2024-07-12 12:31:43 +00:00
|
|
|
# use log compression
|
|
|
|
S3_GW_HTTP_LOGGING_GZIP=true
|
|
|
|
# possible destination output values: filesystem path, url, "stdout", "stderr"
|
|
|
|
S3_GW_HTTP_LOGGING_DESTINATION=stdout
|
|
|
|
|
2022-04-12 22:29:51 +00:00
|
|
|
# RPC endpoint and order of resolving of bucket names
|
2022-12-20 08:38:58 +00:00
|
|
|
S3_GW_RPC_ENDPOINT=http://morph-chain.frostfs.devenv:30333/
|
2022-04-14 18:10:57 +00:00
|
|
|
S3_GW_RESOLVE_ORDER="nns dns"
|
2022-04-12 22:29:51 +00:00
|
|
|
|
|
|
|
# Metrics
|
2022-07-26 13:29:07 +00:00
|
|
|
S3_GW_PPROF_ENABLED=true
|
|
|
|
S3_GW_PPROF_ADDRESS=localhost:8085
|
|
|
|
|
|
|
|
S3_GW_PROMETHEUS_ENABLED=true
|
|
|
|
S3_GW_PROMETHEUS_ADDRESS=localhost:8086
|
2022-04-12 22:29:51 +00:00
|
|
|
|
|
|
|
# Timeout to connect to a node
|
2022-07-18 13:11:25 +00:00
|
|
|
S3_GW_CONNECT_TIMEOUT=10s
|
2022-11-15 14:19:21 +00:00
|
|
|
# Timeout for individual operations in streaming RPC.
|
|
|
|
S3_GW_STREAM_TIMEOUT=10s
|
2022-04-12 22:29:51 +00:00
|
|
|
# Timeout to check node health during rebalance.
|
2022-04-14 15:09:57 +00:00
|
|
|
S3_GW_HEALTHCHECK_TIMEOUT=15s
|
2022-04-12 22:29:51 +00:00
|
|
|
# Interval to check node health
|
2022-07-18 13:11:25 +00:00
|
|
|
S3_GW_REBALANCE_INTERVAL=60s
|
2022-07-29 06:26:11 +00:00
|
|
|
# The number of errors on connection after which node is considered as unhealthy
|
|
|
|
S3_GW_POOL_ERROR_THRESHOLD=100
|
2022-04-12 22:29:51 +00:00
|
|
|
|
|
|
|
# Limits for processing of clients' requests
|
|
|
|
S3_GW_MAX_CLIENTS_COUNT=100
|
|
|
|
# Deadline after which the gate sends error `RequestTimeout` to a client
|
|
|
|
S3_GW_MAX_CLIENTS_DEADLINE=30s
|
|
|
|
|
|
|
|
# Caching
|
|
|
|
# Cache for objects
|
|
|
|
S3_GW_CACHE_OBJECTS_LIFETIME=5m
|
|
|
|
S3_GW_CACHE_OBJECTS_SIZE=1000000
|
|
|
|
# Cache which keeps lists of objects in buckets
|
|
|
|
S3_GW_CACHE_LIST_LIFETIME=1m
|
|
|
|
S3_GW_CACHE_LIST_SIZE=100000
|
2023-10-16 06:27:21 +00:00
|
|
|
# Cache which keeps listing session
|
|
|
|
S3_GW_CACHE_LIST_SESSION_LIFETIME=1m
|
|
|
|
S3_GW_CACHE_LIST_SESSION_SIZE=100
|
2022-04-12 22:29:51 +00:00
|
|
|
# Cache which contains mapping of bucket name to bucket info
|
|
|
|
S3_GW_CACHE_BUCKETS_LIFETIME=1m
|
|
|
|
S3_GW_CACHE_BUCKETS_SIZE=1000
|
|
|
|
# Cache which contains mapping of nice name to object addresses
|
|
|
|
S3_GW_CACHE_NAMES_LIFETIME=1m
|
|
|
|
S3_GW_CACHE_NAMES_SIZE=10000
|
2024-06-25 12:24:29 +00:00
|
|
|
# Cache for system objects in a bucket: bucket settings etc
|
2022-04-12 22:29:51 +00:00
|
|
|
S3_GW_CACHE_SYSTEM_LIFETIME=5m
|
|
|
|
S3_GW_CACHE_SYSTEM_SIZE=100000
|
|
|
|
# Cache which stores access box with tokens by its address
|
2024-02-06 13:44:49 +00:00
|
|
|
S3_GW_CACHE_ACCESSBOX_REMOVING_CHECK_INTERVAL=5m
|
2022-04-12 22:29:51 +00:00
|
|
|
S3_GW_CACHE_ACCESSBOX_LIFETIME=10m
|
|
|
|
S3_GW_CACHE_ACCESSBOX_SIZE=100
|
2022-10-03 14:36:09 +00:00
|
|
|
# Cache which stores owner to cache operation mapping
|
|
|
|
S3_GW_CACHE_ACCESSCONTROL_LIFETIME=1m
|
|
|
|
S3_GW_CACHE_ACCESSCONTROL_SIZE=100000
|
2023-12-05 09:12:35 +00:00
|
|
|
# Cache which stores list of policy chains
|
|
|
|
S3_GW_CACHE_MORPH_POLICY_LIFETIME=1m
|
|
|
|
S3_GW_CACHE_MORPH_POLICY_SIZE=10000
|
2024-03-12 08:28:24 +00:00
|
|
|
# Cache which stores frostfsid subject info
|
|
|
|
S3_GW_CACHE_FROSTFSID_LIFETIME=1m
|
|
|
|
S3_GW_CACHE_FROSTFSID_SIZE=10000
|
2024-09-05 12:36:40 +00:00
|
|
|
# Cache which stores network info
|
|
|
|
S3_GW_CACHE_NETWORK_INFO_LIFETIME=1m
|
2022-04-12 22:29:51 +00:00
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
# Default policy of placing containers in FrostFS
|
|
|
|
# If a user sends a request `CreateBucket` and doesn't define policy for placing of a container in FrostFS, the S3 Gateway
|
2022-04-12 22:29:51 +00:00
|
|
|
# will put the container with default policy. It can be specified via environment variable, e.g.:
|
2022-11-03 06:49:06 +00:00
|
|
|
S3_GW_PLACEMENT_POLICY_DEFAULT_POLICY="REP 3"
|
|
|
|
# Region to placement policy mapping json file.
|
|
|
|
# Path to container policy mapping. The same as '--container-policy' flag for authmate
|
|
|
|
S3_GW_PLACEMENT_POLICY_REGION_MAPPING=/path/to/container/policy.json
|
2022-04-12 22:29:51 +00:00
|
|
|
|
2023-04-24 23:49:12 +00:00
|
|
|
# Name of location constraint
|
|
|
|
S3_GW_PLACEMENT_POLICY_COPIES_NUMBERS_0_LOCATION_CONSTRAINT=sample-01
|
|
|
|
# Array of copies numbers for corresponding location constraint
|
|
|
|
S3_GW_PLACEMENT_POLICY_COPIES_NUMBERS_0_VECTOR=1 2 3
|
|
|
|
# Second set of location constraint and its copies numbers
|
|
|
|
S3_GW_PLACEMENT_POLICY_COPIES_NUMBERS_1_LOCATION_CONSTRAINT=sample-02
|
|
|
|
S3_GW_PLACEMENT_POLICY_COPIES_NUMBERS_1_VECTOR=2 3 4
|
|
|
|
|
2022-04-12 22:29:51 +00:00
|
|
|
# CORS
|
|
|
|
# value of Access-Control-Max-Age header if this value is not set in a rule. Has an int type.
|
|
|
|
S3_GW_CORS_DEFAULT_MAX_AGE=600
|
|
|
|
|
2022-12-20 08:38:58 +00:00
|
|
|
# Parameters of requests to FrostFS
|
2023-05-24 06:40:45 +00:00
|
|
|
# Numbers of the object copies (for each replica, syntax the same as for `S3_GW_PLACEMENT_POLICY_COPIES_NUMBERS_0_VECTOR` above)
|
|
|
|
# to consider PUT to FrostFS successful.
|
|
|
|
# `0` or empty list means that object will be processed according to the container's placement policy
|
2022-12-20 08:38:58 +00:00
|
|
|
S3_GW_FROSTFS_SET_COPIES_NUMBER=0
|
2023-07-14 12:30:47 +00:00
|
|
|
# This flag enables client side object preparing.
|
|
|
|
S3_GW_FROSTFS_CLIENT_CUT=false
|
2023-08-25 10:07:59 +00:00
|
|
|
# Sets max buffer size for read payload in put operations.
|
|
|
|
S3_GW_FROSTFS_BUFFER_MAX_SIZE_FOR_PUT=1048576
|
2023-10-23 14:06:42 +00:00
|
|
|
# max attempt to make successful tree request.
|
|
|
|
# default value is 0 that means the number of attempts equals to number of nodes in pool.
|
|
|
|
S3_GW_FROSTFS_TREE_POOL_MAX_ATTEMPTS=0
|
2024-08-26 10:04:24 +00:00
|
|
|
# Specifies the timeout after which unhealthy client be closed during rebalancing if it will become healthy back.
|
|
|
|
S3_GW_FROSTFS_GRACEFUL_CLOSE_ON_SWITCH_TIMEOUT=10s
|
2022-08-31 23:12:02 +00:00
|
|
|
|
|
|
|
# List of allowed AccessKeyID prefixes
|
|
|
|
# If not set, S3 GW will accept all AccessKeyIDs
|
|
|
|
S3_GW_ALLOWED_ACCESS_KEY_ID_PREFIXES=Ck9BHsgKcnwfCTUSFm6pxhoNS4cBqgN2NQ8zVgPjqZDX 3stjWenX15YwYzczMr88gy3CQr4NYFBQ8P7keGzH5QFn
|
2023-02-10 12:21:25 +00:00
|
|
|
|
2023-11-16 12:10:51 +00:00
|
|
|
# Header to determine zone to resolve bucket name
|
|
|
|
S3_GW_RESOLVE_NAMESPACE_HEADER=X-Frostfs-Namespace
|
2023-02-10 12:21:25 +00:00
|
|
|
# List of container NNS zones which are allowed or restricted to resolve with HEAD request
|
|
|
|
S3_GW_RESOLVE_BUCKET_ALLOW=container
|
|
|
|
# S3_GW_RESOLVE_BUCKET_DENY=
|
2023-03-02 14:54:33 +00:00
|
|
|
|
2023-10-09 12:34:51 +00:00
|
|
|
# Enable using default xml namespace `http://s3.amazonaws.com/doc/2006-03-01/` when parse xml bodies.
|
|
|
|
S3_GW_KLUDGE_USE_DEFAULT_XMLNS=false
|
2023-07-10 09:17:44 +00:00
|
|
|
# Use this flag to be able to use chunked upload approach without having `aws-chunked` value in `Content-Encoding` header.
|
2023-11-16 12:10:51 +00:00
|
|
|
S3_GW_KLUDGE_BYPASS_CONTENT_ENCODING_CHECK_IN_CHUNKS=false
|
|
|
|
# Namespaces that should be handled as default
|
|
|
|
S3_GW_KLUDGE_DEFAULT_NAMESPACES="" "root"
|
2023-05-31 16:35:20 +00:00
|
|
|
|
|
|
|
S3_GW_TRACING_ENABLED=false
|
|
|
|
S3_GW_TRACING_ENDPOINT="localhost:4318"
|
|
|
|
S3_GW_TRACING_EXPORTER="otlp_grpc"
|
2024-09-10 07:31:01 +00:00
|
|
|
S3_GW_TRACING_TRUSTED_CA=""
|
2023-08-30 18:24:22 +00:00
|
|
|
|
2023-10-09 12:34:51 +00:00
|
|
|
S3_GW_RUNTIME_SOFT_MEMORY_LIMIT=1073741824
|
2023-10-02 08:52:07 +00:00
|
|
|
|
|
|
|
S3_GW_FEATURES_MD5_ENABLED=false
|
2023-12-05 12:49:13 +00:00
|
|
|
# Enable denying access for request that doesn't match any policy chain rules.
|
|
|
|
S3_GW_FEATURES_POLICY_DENY_BY_DEFAULT=false
|
2023-10-26 13:44:40 +00:00
|
|
|
|
|
|
|
# ReadTimeout is the maximum duration for reading the entire
|
|
|
|
# request, including the body. A zero or negative value means
|
|
|
|
# there will be no timeout.
|
|
|
|
S3_GW_WEB_READ_TIMEOUT=0
|
|
|
|
# ReadHeaderTimeout is the amount of time allowed to read
|
|
|
|
# request headers. The connection's read deadline is reset
|
|
|
|
# after reading the headers and the Handler can decide what
|
|
|
|
# is considered too slow for the body. If ReadHeaderTimeout
|
|
|
|
# is zero, the value of ReadTimeout is used. If both are
|
|
|
|
# zero, there is no timeout.
|
|
|
|
S3_GW_WEB_READ_HEADER_TIMEOUT=30s
|
|
|
|
# WriteTimeout is the maximum duration before timing out
|
|
|
|
# writes of the response. It is reset whenever a new
|
|
|
|
# request's header is read. Like ReadTimeout, it does not
|
|
|
|
# let Handlers make decisions on a per-request basis.
|
|
|
|
# A zero or negative value means there will be no timeout.
|
|
|
|
S3_GW_WEB_WRITE_TIMEOUT=0
|
|
|
|
# IdleTimeout is the maximum amount of time to wait for the
|
|
|
|
# next request when keep-alives are enabled. If IdleTimeout
|
|
|
|
# is zero, the value of ReadTimeout is used. If both are
|
|
|
|
# zero, there is no timeout.
|
|
|
|
S3_GW_WEB_IDLE_TIMEOUT=30s
|
2023-10-05 13:25:25 +00:00
|
|
|
|
|
|
|
# FrostfsID contract configuration. To enable this functionality the `rpc_endpoint` param must be also set.
|
|
|
|
# FrostfsID contract hash (LE) or name in NNS.
|
|
|
|
S3_GW_FROSTFSID_CONTRACT=frostfsid.frostfs
|
2023-12-13 14:44:18 +00:00
|
|
|
# Enables a check to only allow requests to users registered in the FrostfsID contract.
|
|
|
|
S3_GW_FROSTFSID_VALIDATION_ENABLED=true
|
2023-11-21 08:51:07 +00:00
|
|
|
|
2023-12-05 09:12:35 +00:00
|
|
|
# Policy contract configuration. To enable this functionality the `rpc_endpoint` param must be also set.
|
|
|
|
# Policy contract hash (LE) or name in NNS.
|
|
|
|
S3_GW_POLICY_CONTRACT=policy.frostfs
|
|
|
|
|
2023-12-21 14:57:12 +00:00
|
|
|
# Proxy contract configuration. To enable this functionality the `rpc_endpoint` param must be also set.
|
|
|
|
# Proxy contract hash (LE) or name in NNS.
|
|
|
|
S3_GW_PROXY_CONTRACT=proxy.frostfs
|
|
|
|
|
2023-11-21 08:51:07 +00:00
|
|
|
# Namespaces configuration
|
|
|
|
S3_GW_NAMESPACES_CONFIG=namespaces.json
|
2024-04-17 14:08:55 +00:00
|
|
|
|
|
|
|
# Custom header to retrieve Source IP
|
|
|
|
S3_GW_SOURCE_IP_HEADER=Source-Ip
|
2024-05-30 13:02:27 +00:00
|
|
|
|
|
|
|
# Retry strategy configuration.
|
|
|
|
# Max amount of request attempts. Currently only for updating bucket settings request.
|
|
|
|
S3_GW_RETRY_MAX_ATTEMPTS=4
|
|
|
|
# Max delay before next attempt.
|
|
|
|
S3_GW_RETRY_MAX_BACKOFF=30s
|
|
|
|
# Backoff strategy. `exponential` and `constant` are allowed.
|
|
|
|
S3_GW_RETRY_STRATEGY=exponential
|
|
|
|
|
2024-07-15 15:35:54 +00:00
|
|
|
# Containers properties
|
|
|
|
S3_GW_CONTAINERS_CORS=AZjLTXfK4vs4ovxMic2xEJKSymMNLqdwq9JT64ASFCRj
|
2024-08-12 11:22:56 +00:00
|
|
|
S3_GW_CONTAINERS_LIFECYCLE=AZjLTXfK4vs4ovxMic2xEJKSymMNLqdwq9JT64ASFCRj
|