###################################
## A second mock app_config so   ##
## settings can be commented out ##
###################################

[resilient]
# Basic service connection
host=resilient
port=443

# Use (api_key_id, api_key_secret)
api_key_id=ApiKeyId
api_key_secret=ApiKeySecret
# Or (email, password)
#email=api_user@example.com
#password=MyPassword

org=My Org

# Number of attempts to retry when connecting to Resilient. 0 = unlimited retries
#max_connection_retries=10

# Actions Module connection
# Use stomp_url when configuring an environment for CP4S
#stomp_host=
#stomp_port=65001
#stomp_timeout=120
#stomp_max_retries=3
# optional parameters for stomp connections.
#  refer to IBM Support for additional settings
#  ex: stomp_parameter=startupMaxReconnectAttempts=3,maxReconnectAttempts=10,initialReconnectDelay=20
#stomp_params=param1=value1[,param2=value2]

# CloudPak support for both host and stomp_host
#resource_prefix=/api/respond

# Directory containing additional components to load
# componentsdir=components
# Existing directory to write logs to, or set with $APP_LOG_DIR
logdir=/tmp
logfile=app.log
loglevel=INFO

# The number of Functions to run in parallel
#num_workers=5

# If your Resilient server uses a self-signed TLS certificate, or some
# other certificate that is not automatically trusted by your machine,
# you need to explicitly tell the Python scripts that it should be trusted.
# If you don't want to use a cert you can set cafile=false.
# To explicitly trust a site, download its certificate to a file, e.g:
#    mkdir -p ~/.resilient
#    openssl s_client -connect resilient.example.com:443 -showcerts < /dev/null 2> /dev/null | openssl x509 -outform PEM > ~/.resilient/cert.cer
# then specify the file (remove the '#' from the line below):
#cafile=~/.resilient/cert.cer

[integrations]
# Use this section to configure options for all Apps within this environment

# Proxy settings
#http_proxy=http://example.com:3000
#https_proxy=https://example.com:3000

# Global setting for API call timeouts, 30 seconds is the current default
#timeout=30