[fix] Use example.com domain according to RFC 2606 and RFC 6761. Mydomain.com is a commercial registrar.

This commit is contained in:
opi 2015-11-23 09:34:40 +01:00
parent b8cacc4cf5
commit 4f2ef58530

View file

@ -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"
} }
} }
} }