James Valleroy 39aac9228b
ejabberd: Enable mod_http_upload
- Upgrade existing config.

Tests:

- Install ejabberd. Configuration is set as expected and ejabberd is
  running.

- Upgrade from existing ejabberd install. Configuration is set as
  expected and ejabberd is running.

- Send a file between two users in dino-im and Conversations app.

Signed-off-by: James Valleroy <jvalleroy@mailbox.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
2022-12-04 10:56:30 -08:00

15 lines
338 B
Plaintext

# Proxy for BOSH server
ProxyPass /bosh/ http://localhost:5443/bosh/
ProxyPassReverse /bosh/ http://localhost:5443/bosh/
<Proxy http://localhost:5443/bosh/*>
Require all granted
</Proxy>
##
## Proxy for XEP-0363 HTTP File Upload
##
<Location /upload/>
ProxyPreserveHost On
ProxyPass http://localhost:5443/upload/
</Location>