Dockerfile fix

This commit is contained in:
2023-03-10 02:16:28 -04:00
parent 001bebe75a
commit f02ec2cad2
12 changed files with 166 additions and 99 deletions

View File

@@ -1,20 +1,17 @@
{
"module": {
"web": {
"issuers": ["accounts.bitdeals.org"],
"scopes": ["bitdeals"],
"client_id": "dm-bitdeals.org",
"client_secret": "",
"scopes": ["api","openid","profile","email"],
"client_id": "web-bitdeals.org",
"client_secret": "4aJEJi3dsSypeUSRCah4gIIs",
"algorithm": "HS256",
"auth_uri": "/oauth2/authorize",
"token_uri": "/oauth2/token",
"redirect_uris": [
"http://localhost:4977/oauth2/code",
"http://localhost:4999/dashboard/",
"https://oauthdebugger.com/debug"
],
"javascript_origins": [
"http://localhost:4999",
"http://95.217.251.153:4999"
"http://localhost:4999/oauth2/code",
"http://localhost:4999/oauth2/callback",
"https://oauthdebugger.com/debug",
"https://auth.advancedrestclient.com/oauth-popup.html"
]
}
}

View File

@@ -1,4 +1,11 @@
{
"hosts": ["localhost:4999"],
"root": "/etc/dm/www"
"root": "/var/www/web",
"oauth2": {
"identifier": "/oauth/identifier",
"secret": "/oauth/secret",
"callback": "/",
"error": "/oauth/error",
"debug": "http://localhost:3000/"
}
}