Skip to content

Commit

Permalink
unlimited request limit
Browse files Browse the repository at this point in the history
  • Loading branch information
rednoah committed Jun 19, 2024
1 parent 5a58864 commit b96e581
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ filebot-projector:

filebot-webdav:
docker build --rm -t filebot-webdav -f Dockerfile.webdav .
docker run -it -v ${PWD}:/volume1 -v data:/data -p 8080:8080 filebot-webdav
docker run -it -v ${PWD}:/volume1 -v data:/data -e USERNAME=alice -e PASSWORD=secret1234 -p 8080:8080 filebot-webdav

filebot-alpine:
docker build --rm -t filebot-alpine -f Dockerfile.alpine .
Expand Down
3 changes: 3 additions & 0 deletions webdav/usr/local/apache2/conf/http.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
Require all denied
</Directory>

# unlimited request limit
LimitRequestBody 0

# make certain DAV methods work behind an SSL reverse proxy
RequestHeader edit Destination ^https http early
</VirtualHost>

0 comments on commit b96e581

Please sign in to comment.