ftp.certificateGroups

2.15.0+ FTP certificate groups. Certificate groups are assigned to FTP bindings and used for securing FTP over TLS connections.

# example
ftp:
  certificateGroups:
    # default certificate group (no name)
    - certificates:
        - 'path/to/cert'
      
    # named certificate group
    - name: rebexnet
      certificates:
        - 'path/to/cert'
        - 'path/to/key'

ftp.certificateGroups[].name

string | null

Certificate group name. If not specified, the group is considered the default certificate group. Each group must have a unique name.

ftp.certificateGroups[].certificates

string array

Paths to certificate files. See Certificate path format for more information.