mirror of
https://github.com/YunoHost-Apps/synapse_ynh.git
synced 2024-09-03 20:26:38 +02:00
16 lines
595 B
Python
16 lines
595 B
Python
import json
|
|
|
|
server_name = sys.argv[1]
|
|
domain = sys.argv[2]
|
|
|
|
with open("/etc/ssowat/conf.json.persistent", "r", encoding='utf-8') as jsonFile:
|
|
data = json.load(jsonFile)
|
|
for entry in data["skipped_urls"]:
|
|
if "/_matrix" in entry or "/.well-known/matrix/" in entry:
|
|
data["skipped_urls"].remove(entry)
|
|
for entry in data["protected_urls"]:
|
|
if "/_matrix" in entry:
|
|
data["protected_urls"].remove(entry)
|
|
|
|
with open("/etc/ssowat/conf.json.persistent", "w", encoding='utf-8') as jsonFile:
|
|
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))
|