Update domain keys in configuration files for consistency and clarity #49

Merged
gyurix merged 1 commits from dev into main 2025-09-01 08:06:02 +00:00
3 changed files with 6 additions and 6 deletions
Showing only changes of commit daaa19d32a - Show all commits

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": ""
}, },
{ {