Spaces:
Sleeping
Sleeping
dev commited on
Commit ·
7e0293b
1
Parent(s): 559af37
fix: force Basic auth for Windows WebDAV compatibility
Browse files
app.py
CHANGED
|
@@ -280,6 +280,9 @@ def create_app():
|
|
| 280 |
"simple_dc": {
|
| 281 |
"user_mapping": {"*": {user: {"password": passwd, "roles": ["admin"]}}}
|
| 282 |
},
|
|
|
|
|
|
|
|
|
|
| 283 |
"verbose": 1,
|
| 284 |
}
|
| 285 |
)
|
|
|
|
| 280 |
"simple_dc": {
|
| 281 |
"user_mapping": {"*": {user: {"password": passwd, "roles": ["admin"]}}}
|
| 282 |
},
|
| 283 |
+
"http_authenticator": {
|
| 284 |
+
"DAV_auth_type": "basic",
|
| 285 |
+
},
|
| 286 |
"verbose": 1,
|
| 287 |
}
|
| 288 |
)
|