Voici un exemple de la configuration de l'interface Web pour :

  • la faire écouter en SSL et lui définir ses paramètres SSL
  • autoriser le remote_user dans le cas d'une activation d'un SSO ( Single-Sign-On )


# set the Configuration interface into HTTPs or not (disabled by default)
http_use_ssl=1

# Mandatory is SSL is enabled: server key and certificate
http_ssl_cert=/etc/ssl/certs/shinken.cert
http_ssl_key=/etc/ssl/certs/shinken.key


# Remote application authentification
# if 1: allow the user to be load from a HTTP Header
http_remote_user_enable=1

# which HTTP header to get user name if remote_user_enable is 1
http_remote_user_variable=X_Remote_User

# if remote_user_enable is 1,
# http_remote_user_case_sensitive to 1 enable case check on remote user login
# http_remote_user_case_sensitive to 0 disable case check on remote user login
# default value : 1, login is case sensitive
http_remote_user_case_sensitive=1