mod_http_file_share: Add file size limit (default 10M)

This commit is contained in:
Kim Alvefur 2021-01-26 14:53:24 +01:00
parent ea3b09dea8
commit a98f3a3e64
3 changed files with 30 additions and 0 deletions

View file

@ -21,6 +21,22 @@ Romeo receives:
</slot>
</iq>
Romeo sends:
<iq to='upload.localhost' type='get' id='46ca64f3-518e-42bd-8e2f-4ab2f6d2224f' xml:lang='en'>
<request content-type='text/plain' filename='toolarge.dat' xmlns='urn:xmpp:http:upload:0' size='10000000000'/>
</iq>
Romeo receives:
<iq id='46ca64f3-518e-42bd-8e2f-4ab2f6d2224f' from='upload.localhost' type='error'>
<error type='modify'>
<not-acceptable xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>
<text xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'>File too large</text>
<file-too-large xmlns='urn:xmpp:http:upload:0'>
<max-file-size>10000000</max-file-size>
</file-too-large>
</error>
</iq>
Romeo sends:
<iq to='upload.localhost' type='get' id='ac56d83f-a627-4732-8399-60492d1210b6' xml:lang='en'>
<request content-type='text/plain' filename='invalid/filename.dat' xmlns='urn:xmpp:http:upload:0' size='1000'/>

View file

@ -133,3 +133,4 @@ Component "pubsub.localhost" "pubsub"
storage = "memory"
Component "upload.localhost" "http_file_share"
http_file_share_size_limit = 10000000