57 lines
1.7 KiB
Properties
57 lines
1.7 KiB
Properties
# framework.properties
|
|
#
|
|
# The base directory for the rundeck server
|
|
#
|
|
rdeck.base=/app/data
|
|
|
|
# Indicates a file contains credentials for writing to the output log file.
|
|
#
|
|
# The contents of this file must contain a single line with 2 comma separated
|
|
# strings:
|
|
# <username>,<password>
|
|
framework.output.password.file=/app/data/etc/output.password
|
|
|
|
# Framework crypto options
|
|
# framework.crypto.keystore.filename=
|
|
# framework.crypto.keystore.password=
|
|
# framework.crypto.secretkey.password=
|
|
|
|
# SSH connection timeout after a specified number of milliseconds.
|
|
# Default timeout is 30 seconds.
|
|
framework.ssh.timeout=30000
|
|
|
|
# Set the follow to true if you want ssh-agent forwarding to work.
|
|
framework.ssh.user.enableagentforward=false
|
|
|
|
# ssh key storage
|
|
framework.ssh.keypath=/app/data/.ssh
|
|
framework.ssh.keystore.path=/app/data/var/storage
|
|
|
|
# SSH authentication type (password or privateKey)
|
|
framework.ssh.authentication=privateKey
|
|
|
|
# Set this to true to use the ssh-key storage for ssh plugin tests
|
|
framework.ssh.fileCopier.use.storage=false
|
|
|
|
#
|
|
# Extra environment variables to pass to throttled/queued commands
|
|
#
|
|
# comma separated list of environment variables to pass from parent process to
|
|
# to child process as is
|
|
framework.env.retain=JVM_OPTS
|
|
|
|
# API Tokens File
|
|
framework.tokens.file=/app/data/etc/tokens.properties
|
|
|
|
# For Server URL and Port
|
|
framework.server.name=Rundeck
|
|
framework.server.hostname=${CLOUDRON_APP_DOMAIN}
|
|
framework.server.port=443
|
|
framework.server.url=https://${CLOUDRON_APP_DOMAIN}
|
|
|
|
# Define auth resources
|
|
framework.authorization.resource.file.path=/app/data/etc/resources.xml
|
|
|
|
# Logging
|
|
framework.log.dispatch.console.format=[%d{ISO8601}] %-5p %c{2} - %m%n
|
|
framework.log.dispatch.file=/app/data/var/logs/rundeck.log |