mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Do not protect admin & api path, on every domains
This commit is contained in:
parent
baad6ae843
commit
0db7cb0dd7
1 changed files with 1 additions and 1 deletions
2
app.py
2
app.py
|
@ -892,7 +892,7 @@ def app_ssowatconf(auth):
|
|||
protected_regex.append(item)
|
||||
|
||||
for domain in domains:
|
||||
skipped_urls.extend([domain +'/yunohost/admin', domain +'/yunohost/api'])
|
||||
skipped_urls.extend(['/yunohost/admin', '/yunohost/api'])
|
||||
|
||||
with open('/etc/ssowat/conf.json') as f:
|
||||
conf_dict = json.load(f)
|
||||
|
|
Loading…
Add table
Reference in a new issue