S3 Storage Status

Current S3 configuration and connection status

Configuration Status
{% if s3_info.get('storage_provider') == 'minio' %} {% endif %}
S3 Storage: {{ 'Enabled' if s3_info.enabled else 'Disabled' }}
Provider: {{ s3_info.storage_provider.title() if s3_info.get('storage_provider') else 'AWS S3' }}
Bucket Name: {{ s3_info.bucket_name }}
Region: {{ s3_info.aws_region }}
MinIO Endpoint: {{ s3_info.get('minio_endpoint', 'Not configured') }}
Signed URLs: {{ 'Enabled' if s3_info.use_signed_urls else 'Disabled' }}
Fallback: {{ 'Enabled' if s3_info.fallback_enabled else 'Disabled' }}
Connection Status
{% if s3_info.enabled and s3_info.connection_success %}
Asset Management

S3 storage is properly configured and connected. Assets will be served from S3.

Asset Locations
  • Club Logos: {{ s3_info.bucket_name }}/assets/images/clubs/
  • General Images: {{ s3_info.bucket_name }}/assets/images/
  • Player Images: {{ s3_info.bucket_name }}/assets/images/players/
{% elif s3_info.enabled and not s3_info.connection_success %}
Troubleshooting
S3 is enabled but connection failed

Check the following:

  • Verify AWS credentials are correct
  • Ensure the bucket name exists
  • Check bucket permissions
  • Verify AWS region is correct
{% else %}
Static File Storage

S3 storage is disabled. Assets are being served from local static files.

Local Asset Locations
  • Club Logos: /static/images/clubs/
  • General Images: /static/images/
  • Player Images: /static/images/players/
{% endif %}