Merge pull request 'Update domain keys in configuration files for consistency and clarity' (#49) from dev into main

Reviewed-on: #49
This commit is contained in:
2025-09-01 08:06:01 +00:00
3 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
{ {
"main": { "main": {
"SERVICE_NAME": "matrix", "SERVICE_NAME": "matrix",
"DOMAIN": "#DOMAIN_ADMIN" "DOMAIN": "#ADMINDOMAIN"
}, },
"containers": [ "containers": [
{ {
@@ -29,7 +29,7 @@
"PORT": "80" "PORT": "80"
}, },
{ {
"DOMAIN": "#DOMAINADMIN" "DOMAIN": "#ADMINDOMAIN"
}, },
{ {
"SMARTHOST_PROXY_PATH": "/smarthost-domains" "SMARTHOST_PROXY_PATH": "/smarthost-domains"

View File

@@ -22,8 +22,8 @@
}, },
"matrixadmin": { "matrixadmin": {
"REACT_APP_SERVER": "https://#DOMAIN", "REACT_APP_SERVER": "https://#DOMAIN",
"BASE_PATH": "/synapse-admin", "BASE_PATH": "#ADMINDOMAIN",
"DOMAINADMIN": "#DOMAINADMIN", "ADMINDOMAIN": "#ADMINDOMAIN",
"SUBPATH": "#SUBPATH" "SUBPATH": "#SUBPATH"
} }
} }

View File

@@ -26,14 +26,14 @@
}, },
{ {
"description": "Add matrix server admin domain", "description": "Add matrix server admin domain",
"key": "DOMAIN_ADMIN", "key": "ADMINDOMAIN",
"value": "", "value": "",
"required": "true" "required": "true"
}, },
{ {
"description": "Add domain subpath for matrix admin (e.g. admin)", "description": "Add domain subpath for matrix admin (e.g. admin)",
"details": "Optional - leave blank for none but keep in mind subpath will be required if you have other services using the same domain, for example matrix domain is the same as admin domain.", "details": "Optional - leave blank for none but keep in mind subpath will be required if you have other services using the same domain, for example matrix domain is the same as admin domain.",
"key": "SUB_PATH", "key": "SUBPATH",
"value": "" "value": ""
}, },
{ {