44 lines
1 KiB
Text
44 lines
1 KiB
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
#
|
||
|
# Template for eIDAS Connector configuration
|
||
|
# Script within docker container reads from /etc/eidas-connector/env/ - So make sure to have a volume mount.
|
||
|
#
|
||
|
|
||
|
# The hostname that the connector exposes externally - Set in "docker run"
|
||
|
#IDP_SERVER_HOSTNAME=eunode.qa.sveidas.se
|
||
|
|
||
|
# Connector IdP entityID
|
||
|
IDP_ENTITY_ID=https://${IDP_SERVER_HOSTNAME}/eidas
|
||
|
|
||
|
# Connector SP entityID
|
||
|
SP_ENTITY_ID=https://${IDP_SERVER_HOSTNAME}/idp/metadata/sp
|
||
|
|
||
|
#
|
||
|
# Logging settings
|
||
|
#
|
||
|
|
||
|
# Logback log levels
|
||
|
# There must be a Docker volume mounted to the /etc/eidas-connector directory.
|
||
|
IDP_LOG_SETTINGS_FILE=/etc/eidas-connector/loglevels.xml
|
||
|
|
||
|
# Process logs go to stdout
|
||
|
IDP_LOG_CONSOLE=true
|
||
|
|
||
|
# Syslog (for Audit and F-TICKS)
|
||
|
IDP_SYSLOG_HOST=syslog.nordu.net
|
||
|
IDP_SYSLOG_PORT=514
|
||
|
|
||
|
# F-TICKS and Audit
|
||
|
IDP_FTICKS_FEDERATION_ID=eIDAS
|
||
|
#IDP_FTICKS_SALT=changeme
|
||
|
|
||
|
# Different formats -> different facilities (?)
|
||
|
IDP_FTICKS_SYSLOG_FACILITY=AUTHPRIV
|
||
|
IDP_AUDIT_SYSLOG_FACILITY=AUTH
|
||
|
|
||
|
|
||
|
# JVM settings
|
||
|
JVM_MAX_HEAP=1536m
|
||
|
JVM_START_HEAP=512m
|