AWS elasticbeanstalk:httpd 2.4使用2.2配置mod_wsgi

时间:2016-02-26 05:59:44

标签: apache amazon-web-services deployment elastic-beanstalk

我在我的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很新。

0 个答案:

没有答案