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

14 lines
491 B
Markdown
Raw Normal View History

2019-06-17 01:11:28 +00:00
# [auth.rxbn.de](https://auth.rxbn.de) - Single sign-on (SSO) Service
Single sign-on authentication and authorization service for rxbn.de services
2019-06-01 20:35:59 +00:00
# start server
2020-09-16 16:52:28 +00:00
## regular
2019-06-01 20:35:59 +00:00
```sh
$ DB_URL="mongodb://user:pass@ip:port/authdb" DB_NAME="authRxbn" SESSION_KEY="32byteHexString" COOKIE_KEY="32byteHexString" node app.js
2019-06-01 20:35:59 +00:00
```
2020-09-16 16:52:28 +00:00
## debug
2019-06-01 20:35:59 +00:00
```sh
$ DB_URL="mongodb://user:pass@ip:port/authdb" DB_NAME="authRxbn" SESSION_KEY="32byteHexString" COOKIE_KEY="32byteHexString" NODE_ENV=debug node app.js
2019-06-01 20:35:59 +00:00
```