github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/pkg/config/testdata/valid_config.yaml (about)

     1  ---
     2  logging:
     3    format: text
     4    level: NONE
     5    output: "-"
     6  
     7  database:
     8    type: postgres
     9    postgres:
    10      connection_string: test:///dev/null
    11      max_open_connections: 12
    12      max_idle_connections: 13
    13      connection_max_lifetime: 2s
    14  
    15  auth:
    16    encrypt:
    17      secret_key: "required in config"
    18  
    19  blockstore:
    20    type: local
    21    local:
    22      path: /tmp
    23  
    24  gateways:
    25    s3:
    26      domain_name:
    27        - s3.example.com
    28        - gs3.example.com
    29        - gcp.example.net
    30      region: us-east-1
    31  
    32  listen_address: "0.0.0.0:8005"