16

私はローカルで flower を使用しており、セットアップと実行は簡単に思えますが、実稼働環境でどのようにセットアップするかわかりません。

特に、認証を追加するにはどうすればよいですか? また、認証にアクセスするための URL をどのように定義すればよいでしょうか?

4

2 に答える 2

14

カスタム アドレスの場合は、--addressフラグを使用します。認証には、--basic_authフラグを使用します。

下記参照:

# celery flower --help
Usage: /usr/local/bin/celery [OPTIONS]

Options:

  --address                        run on the given address
  --auth                           regexp  of emails to grant access
  --basic_auth                     colon separated user-password to enable
                                   basic auth
  --broker_api                     inspect broker e.g.
                                   http://guest:guest@localhost:15672/api/
  --certfile                       path to SSL certificate file
  --db                             flower database file (default flower.db)
  --debug                          run in debug mode (default False)
  --help                           show this help information
  --inspect                        inspect workers (default True)
  --inspect_timeout                inspect timeout (in milliseconds) (default
                                   1000)
  --keyfile                        path to SSL key file
  --max_tasks                      maximum number of tasks to keep in memory
                                   (default 10000) (default 10000)
  --persistent                     enable persistent mode (default False)
  --port                           run on the given port (default 5555)
  --url_prefix                     base url prefix
  --xheaders                       enable support for the 'X-Real-Ip' and
                                   'X-Scheme' headers. (default False)
于 2014-01-12T07:16:47.863 に答える