我在我的django应用程序中使用elasticbeanstalk。但是当我尝试使用以下方法设置静态/媒体文件时
aws:elasticbeanstalk:container:python:staticfiles:
/static/: static/
为静态文件生成的wsgi.conf配置是:
Alias /static/ /opt/python/current/app/static/
<Directory /opt/python/current/app/static/>
Order allow,deny
Allow from all
</Directory>
但是,这不是Apache 2.4.16使用的配置。我认为它使用Require all granted
代替上述内容。
如果我做错了,请告诉我。我对EBS很新。