@bl00d i'm just using AWS. I know, bezos is evil, but I'll still take free shit from him. does akkoma work better with other providers?
the issue seems to be that akkoma is sending a malformed URL to the clients, it's sending this:
https://s3.amazonaws.com/edens-polis/177b8e557877493993f62ce1d75eabd1b25ab64351d92c55d5e4625a9011f104.pngbut the URL AWS wants me to use to access it is this:
https://edens-polis.s3.amazonaws.com/177b8e557877493993f62ce1d75eabd1b25ab64351d92c55d5e4625a9011f104.pngthis is the config i'm using rn if anything jumps out.
# Configure S3 support if desired.
# The public S3 endpoint (base_url) is different depending on region and provider,
# consult your S3 provider's documentation for details on what to use.
#
config :pleroma, Pleroma.Upload,
uploader: Pleroma.Uploaders.S3,
base_url: "https://s3.amazonaws.com"
config :pleroma, Pleroma.Uploaders.S3,
bucket: "edens-polis",
bucket_namespace: nil,
truncated_namespace: nil,
streaming_enabled: true
#Configure S3 credentials:
config :ex_aws, :s3,
access_key_id: "[redacted]",
secret_access_key: "[redacted]",
region: "ca-central-1",
scheme: "https://"