storage.yml.dist 860 B

123456789101112131415161718192021
  1. # This is the Zammad storage provider config sample. Copy this file to
  2. # config/zammad/storage.yml and adopt your configuration.
  3. # Amazon AWS S3 compatible simple storage service.
  4. #
  5. # For further information please see the official Amazon AWS S3 guide
  6. # https://docs.aws.amazon.com/AmazonS3/latest/userguide
  7. s3:
  8. access_key_id: 'key'
  9. secret_access_key: 'secret'
  10. region: 'eu-central-1'
  11. endpoint: 'https://s3.eu-central-1.amazonaws.com'
  12. force_path_style: true
  13. bucket: 'zammad-storage-bucket'
  14. # The above configuration may also be provided in a URL-like format in this
  15. # configuration file or as an environment variable named S3_URL.
  16. # If the url is provided in the configuration file the environment variable is
  17. # ignored.
  18. s3:
  19. url: 'https://key:secret@s3.eu-central-1.amazonaws.com/zammad-storage-bucket?region=eu-central-1&force_path_style=true'