mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
[fix] Use example.com domain according to RFC 2606 and RFC 6761. Mydomain.com is a commercial registrar.
This commit is contained in:
parent
b8cacc4cf5
commit
4f2ef58530
1 changed files with 10 additions and 10 deletions
20
conf.json
20
conf.json
|
@ -1,16 +1,16 @@
|
||||||
{
|
{
|
||||||
"portal_scheme": "https",
|
"portal_scheme": "https",
|
||||||
"portal_domain": "mydomain.com",
|
"portal_domain": "example.com",
|
||||||
"portal_path": "/ssowat/",
|
"portal_path": "/ssowat/",
|
||||||
"domains": [
|
"domains": [
|
||||||
"mydomain.com",
|
"example.com",
|
||||||
"myotherdomain.com"
|
"example.org"
|
||||||
],
|
],
|
||||||
"skipped_urls": [
|
"skipped_urls": [
|
||||||
"mydomain.com/megusta",
|
"example.com/megusta",
|
||||||
"myotherdomain.com/somuchwin"
|
"example.org/somuchwin"
|
||||||
],
|
],
|
||||||
"unprotected_urls": ["mydomain.com/yunoprotect"],
|
"unprotected_urls": ["example.com/yunoprotect"],
|
||||||
"additional_headers": {
|
"additional_headers": {
|
||||||
"Auth-User": "uid",
|
"Auth-User": "uid",
|
||||||
"Remote-User": "uid",
|
"Remote-User": "uid",
|
||||||
|
@ -19,12 +19,12 @@
|
||||||
},
|
},
|
||||||
"users": {
|
"users": {
|
||||||
"myuser": {
|
"myuser": {
|
||||||
"mydomain.com/myapp": "My App",
|
"example.com/myapp": "My App",
|
||||||
"mydomain.com/myapp2": "My second App"
|
"example.com/myapp2": "My second App"
|
||||||
},
|
},
|
||||||
"myuser2": {
|
"myuser2": {
|
||||||
"myotherdomain.com/myapp": "My other domain App",
|
"example.org/myapp": "My other domain App",
|
||||||
"mydomain.com/myapp2": "My second App"
|
"example.com/myapp2": "My second App"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue