You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Legacy support: `?key=...` is still accepted, but dir-browser will redirect to a clean URL after setting the cookie.
88
+
89
+
```
90
+
curl -X POST https://dir-demo.adriansoftware.de/examples/foo%20%20%20bar/ -d "key=foobar"
91
+
```
90
92
:::
91
93
92
94
### Inheritance
93
95
94
96
When evaluating access, dir-browser checks the current folder `.access.json` and all parent folders.
95
97
Parent configs only apply to subfolders when `inherit: true`. Subfolder configs override parent configs.
96
-
```
97
98
98
99
## Global password
99
100
@@ -106,7 +107,7 @@ import EnvConfig from '@site/src/components/EnvConfig';
106
107
<EnvConfigname="PASSWORD_USER|PASSWORD_RAW|PASSWORD_HASH"init="<empty>|<empty>|<empty>"values="<string>|<string>|<hash>"desc="Username|Plaintext password|Hash of a password. See definition above."versions="3.3|3.3|3.3"/>
107
108
108
109
:::warning
109
-
`PASSWORD_USER`and either `PASSWORD_RAW` or `PASSWORD_HASH` is mandatory to specify.
110
+
If `PASSWORD_USER`is set then either `PASSWORD_RAW` or `PASSWORD_HASH` is required.
0 commit comments