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
Copy file name to clipboardExpand all lines: adminforth/documentation/docs/tutorial/07-Plugins/05-upload.md
+32-3Lines changed: 32 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ Leave all settings unchanged (ACL Disabled, Block all public access - checked)
30
30
"*"
31
31
],
32
32
"AllowedMethods": [
33
+
"HEAD",
33
34
"PUT"
34
35
],
35
36
"AllowedOrigins": [
@@ -275,7 +276,33 @@ If for example your domain is `my-domain.com` and you bucket has name `static.my
275
276
276
277
Also you will have to enable static website hosting in your bucket settings and set index.html and error.html to empty strings.
277
278
278
-
### S
279
+
### Using local storage adapter
280
+
281
+
The local storage adapter saves files directly on the server’s filesystem and serves them through Express routes. It supports both public and private modes (with presigned URLs).
0 commit comments