After configuring the module and restarting the server, I can see the HTTP upload is enabled at the server end by using an XMPP client. But when I try to upload, it doesn't upload the file and it throws a timeout exception. I'm using Xabber mobile app on android as a client. Here is the config I'm using.
{mod_http_upload, [ {host, upload.@HOST@}, {backend, s3}, {expiration_time, 600}, % play.minio.io's clock is skewed by few minutes {s3, [
{bucket_url, "http://server.com:9000/bucket/"},
{add_acl, false},
{region, "us-east-1"},
{access_key_id, "JWlsdfKd"},
{secret_access_key, "3dz8jasdrtyv678ytfZh20qb5cG2qd"} ]} ]}
Please help where I'm missing.