connector template config

This commit is contained in:
Leif Johansson 2017-10-27 14:07:36 +02:00
parent 542d04e6e8
commit 557b532b46
2 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,43 @@
#!/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

View file

@ -0,0 +1,21 @@
<included>
<variable name="idp.loglevel.idp" value="INFO" />
<variable name="idp.loglevel.messages" value="ERROR" />
<variable name="idp.loglevel.encryption" value="ERROR" />
<variable name="idp.loglevel.opensaml" value="ERROR" />
<variable name="idp.loglevel.props" value="ERROR" />
<variable name="idp.loglevel.eln" value="INFO" />
<variable name="idp.loglevel.eidas" value="INFO" />
<variable name="idp.loglevel.spring" value="ERROR" />
<variable name="idp.loglevel.container" value="ERROR" />
<variable name="idp.loglevel.xmlsec" value="ERROR" />
<!--
It is also possible to add loggers and even appenders in this override file.
For example:
<logger name="net.shibboleth.idp.saml.attribute.mapping" level="INFO" />
-->
</included>