提问者:小点点

亚马逊aws弹性豆茎。自定义配置文件不起作用


我在aws弹性豆茎中遇到了自定义配置文件的问题。

我的应用程序是python烧瓶应用程序。

我把01wsgi. config文件放入.eb扩展名。

并将其压缩,然后上传到弹性豆茎。

源部署良好,但配置没有执行。

我怎样才能使它正常工作?

目录结构:

source_root
  - .ebextensions
     -- 01wsgi.config
  - application
  - application.wsgi

01wsgi. config内容:

files:
  "/etc/httpd/conf.d/wsgi.conf":
    mode: "000644"
    owner: root
    group: root
    content: |
      LoadModule wsgi_module modules/mod_wsgi.so
      WSGIPythonHome /opt/python/run/baselinenv
      WSGISocketPrefix run/wsgi
      WSGIRestrictEmbedded On

      <VirtualHost *:80>
      #############
      # TYPES FIX #
      #############
      AddType text/css .css
      AddType text/javascript .js

      ####################
      # GZIP COMPRESSION #
      ####################
      SetOutputFilter DEFLATE
      AddOutputFilterByType DEFLATE text/html text/css text/plain text/xml text/javascript application/x-javascript application/x-httpd-php
      BrowserMatch ^Mozilla/4 gzip-only-text/html
      BrowserMatch ^Mozilla/4\.0[678] no-gzip
      BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
      BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
      SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip
      Header append Vary User-Agent env=!dont-vary

      Alias /static/(.*)? /opt/python/current/app/application/frontend/static-build/
      <Directory /opt/python/current/app/application/frontend/static-build/>
      Order allow,deny
      Allow from all
      Header append Cache-Control "max-age=2592000, must-revalidate"
      </Directory>

      WSGIScriptAlias / /opt/python/current/app/application.py

      <Directory /opt/python/current/app/>
      Order allow,deny
      Allow from all
      </Directory>

      WSGIDaemonProcess wsgi processes=1 threads=15 display-name=%{GROUP} \
      python-path=/opt/python/current/app:/opt/python/run/venv/lib/python2.7/site-packages user=wsgi group=wsgi \
      home=/opt/python/current/app
      WSGIProcessGroup wsgi
      WSGIScriptReloading On
      </VirtualHost>

我遵循下面的文件:

http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customize-containers.html

将您的wsgi. conf文件放入.eb扩展目录。

并制作一个配置文件,将wsgi. conf复制到甲板上。

01wsgi. config内容:

container_commands:
  replace_wsgi_config:
    command: "cp .ebextensions/wsgi.conf /opt/python/ondeck/wsgi.conf"

共1个答案

匿名用户

我想补充一些关于另一个问题的信息:如果您进行了不执行完整部署的更改(例如更改环境变量),Beanstik将覆盖您的apache host文件。在大多数情况下,您的Web服务器将停止提供您的应用程序,除非您实际上没有自定义wsgi. conf

现在,需要明确的是,您是正确的,因为您需要将WSGI配置放在. eb扩展目录中。然后您使用容器命令将配置文件移动到EB查看的位置。您可以使用以下命令安全地执行此操作:

# Replace the default wsgi with ours
cp .ebextensions/wsgi.conf ../wsgi.conf

为了防止您的自定义wsgi. conf在不执行部署的更新期间被覆盖,您需要对重新创建wsgi.conf的本机EB钩子进行猴子修补。我没有找到有关此的任何文档,但自定义钩子已记录在案,并且本机钩子以相同的方式工作。

这是我一直在使用的猴子补丁:

# Elastic Beanstalk always forces generation of apache hosts,
# stop it by returning true in the function that does it
sed '    /return True # DO NOT REGENERATE APACHE HOSTS/d' /opt/elasticbeanstalk/hooks/config.py \
  | sed -e 's/def generate_apache_config(params, filename):/def generate_apache_config(params, filename):\n    return True # DO NOT REGENERATE APACHE HOSTS/1' \
  -e 's/if not os.path.exists(WSGI_STAGING_CONFIG):/if not os.path.exists(WSGI_STAGING_CONFIG):\n        return True # DO NOT REGENERATE APACHE HOSTS/1' \
  > /tmp/config.py && mv -f /tmp/config.py /opt/elasticbeanstalk/hooks/config.py

SSHEB实例,查看/select/elasticbeanstatk/hooks/config.py,您将看到EB在部署或更新环境期间执行的操作。

AWSing快乐!