mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
parent
d498be179b
commit
58b3ee2f43
1 changed files with 5 additions and 5 deletions
|
@ -2,11 +2,11 @@ import json
|
|||
|
||||
with open("/etc/ssowat/conf.json.persistent", "r") as jsonFile:
|
||||
data = json.load(jsonFile)
|
||||
if "unprotected_urls" in data:
|
||||
data["unprotected_urls"].append("/seafhttp")
|
||||
if "skipped_urls" in data:
|
||||
data["skipped_urls"].append("/seafhttp")
|
||||
else:
|
||||
data["unprotected_urls"] = ["/seafhttp"]
|
||||
data["unprotected_urls"].append("/seafdav")
|
||||
data["skipped_urls"] = ["/seafhttp"]
|
||||
data["skipped_urls"].append("/seafdav")
|
||||
|
||||
with open("/etc/ssowat/conf.json.persistent", "w") as jsonFile:
|
||||
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))
|
||||
jsonFile.write(json.dumps(data, indent=4, sort_keys=True))
|
||||
|
|
Loading…
Reference in a new issue