mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-13 12:33:07 +02:00
The fixture added in #1621 set multiPass to "password". RTL blacklists weak passwords (PASSWORD_BLACKLIST in consts-enums-functions.ts: 'password', 'changeme', 'moneyprintergobrrr') and forces a change when one is used: login.component.ts sets defaultPassword: true, and app.component.ts then redirects to /rtl/settings/auth. So every login with the documented password was bounced to the change password screen and never reached the dashboard. The check is session based rather than first run only, so this happened on every fresh browser session, not just the first. Password is now 'rtldev'. .env documents why it must stay off the blacklist.
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"multiPass": "rtldev",
|
|
"port": "3000",
|
|
"defaultNodeIndex": 1,
|
|
"dbDirectoryPath": "/RTL/database",
|
|
"SSO": {
|
|
"rtlSSO": 0,
|
|
"rtlCookiePath": "",
|
|
"logoutRedirectLink": ""
|
|
},
|
|
"nodes": [
|
|
{
|
|
"index": 1,
|
|
"lnNode": "alice",
|
|
"lnImplementation": "LND",
|
|
"authentication": {
|
|
"macaroonPath": "/lnd/alice/data/chain/bitcoin/regtest"
|
|
},
|
|
"settings": {
|
|
"userPersona": "OPERATOR",
|
|
"themeMode": "DAY",
|
|
"themeColor": "PURPLE",
|
|
"logLevel": "ERROR",
|
|
"lnServerUrl": "https://alice:8080",
|
|
"fiatConversion": false,
|
|
"unannouncedChannels": false,
|
|
"blockExplorerUrl": "https://mempool.space"
|
|
}
|
|
},
|
|
{
|
|
"index": 2,
|
|
"lnNode": "bob",
|
|
"lnImplementation": "LND",
|
|
"authentication": {
|
|
"macaroonPath": "/lnd/bob/data/chain/bitcoin/regtest"
|
|
},
|
|
"settings": {
|
|
"userPersona": "OPERATOR",
|
|
"themeMode": "DAY",
|
|
"themeColor": "PURPLE",
|
|
"logLevel": "ERROR",
|
|
"lnServerUrl": "https://bob:8080",
|
|
"fiatConversion": false,
|
|
"unannouncedChannels": false,
|
|
"blockExplorerUrl": "https://mempool.space"
|
|
}
|
|
},
|
|
{
|
|
"index": 3,
|
|
"lnNode": "carol",
|
|
"lnImplementation": "LND",
|
|
"authentication": {
|
|
"macaroonPath": "/lnd/carol/data/chain/bitcoin/regtest"
|
|
},
|
|
"settings": {
|
|
"userPersona": "MERCHANT",
|
|
"themeMode": "DAY",
|
|
"themeColor": "PURPLE",
|
|
"logLevel": "ERROR",
|
|
"lnServerUrl": "https://carol:8080",
|
|
"fiatConversion": false,
|
|
"unannouncedChannels": false,
|
|
"blockExplorerUrl": "https://mempool.space"
|
|
}
|
|
}
|
|
]
|
|
}
|