1
0
Fork 0
auth.rxbn.de/README.md

1.1 KiB

auth.rxbn.de - Single sign-on (SSO) Service

Single sign-on authentication service for rxbn.de services

Environment variables

  • DB_URL := MongoDB Connection URI String Format, ex.: mongodb://mongoDBUser:mongoDBPassword@localhost:27017/admin
  • DB_NAME := MongoDB Database, ex.: authRxbn
  • SESSION_KEY := SessionKey to encrypt sessions
  • COOKIE_KEY := CookieKey to encrypt cookies
  • PROMETHEUS_USER := PrometheusUser for basic authentication on prometheus endpoints, ex.: test
  • PROMETHEUS_PW := PrometheusPassword for basic authentication on prometheus endpoints, ex.: test

start server

regular

$ DB_URL="mongodb://user:pass@ip:port/authdb" DB_NAME="authRxbn" SESSION_KEY="32byteHexString" COOKIE_KEY="32byteHexString" PROMETHEUS_USER="authUsername" PROMETHEUS_PW="authPassword" node app.js

debug

$ DB_URL="mongodb://user:pass@ip:port/authdb" DB_NAME="authRxbn" SESSION_KEY="32byteHexString" COOKIE_KEY="32byteHexString" PROMETHEUS_USER="authUsername" PROMETHEUS_PW="authPassword" NODE_ENV=debug node app.js