I have a config
file in my projects's .ebextensions
directory containing
option_settings:
"aws:elasticbeanstalk:container:python:staticfiles":
"/static/": "sitetest/static/"
but my EB environment does not change the setting for /static/
in response to this being pushed to AWS.
I can verify that other config
settings in the same directory — e.g. for environment variables using
option_settings:
"aws:elasticbeanstalk:application:environment":
SOME_VAR: "foo"
or for container commands using
container_commands:
00_syncdb:
command: "python manage.py db upgrade"
leader_only: true
behave as expected.
Why isn't AWS Elastic Beanstalk's static path changing when to correspond to the setting in my config file?