When using the repository for self-hosting, I encountered an issue with the AWS S3 settings because I needed to select a different region. The Django framework itself provides the AWS_S3_REGION_NAME environment variable, but I found that it didn’t actually work. It wasn’t until I checked the code in web/config/settings.py that I realized the possible reason. I would suggest adding support for AWS_S3_REGION_NAME in the S3 section, so that it can be conveniently set in the environment variable file. After making this change locally, it did work as expected.

When using the repository for self-hosting, I encountered an issue with the AWS S3 settings because I needed to select a different region. The Django framework itself provides the
AWS_S3_REGION_NAMEenvironment variable, but I found that it didn’t actually work. It wasn’t until I checked the code in web/config/settings.py that I realized the possible reason. I would suggest adding support forAWS_S3_REGION_NAMEin the S3 section, so that it can be conveniently set in the environment variable file. After making this change locally, it did work as expected.