~verterok/charms/xenial/gunicorn/set-env-systemd

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Juan L. Negron
  • Date: 2012-09-14 20:03:09 UTC
  • mfrom: (21.1.2 gunicorn)
  • Revision ID: juan.negron@canonical.com-20120914200309-bum9apt7z0wp5h08
Added support for running gunicorn in django mode in addition to wsgi. Also allow pythonpath to be explicitly set and additional environment variables to be specified.  MP:123481

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
options:
2
2
    wsgi_wsgi_file:
3
3
        type: string
4
 
        default: "wsgi"
5
4
        description: "The name of the WSGI application."
6
5
    wsgi_workers:
7
6
        type: int
67
66
        type: string
68
67
        default: ""
69
68
        description: "The variable to modify to trigger Gunicorn reload"
 
69
    django_settings:
 
70
        type: string
 
71
        default: ""
 
72
        description: "The Python path to a Django settings module."
 
73
    python_path:
 
74
        type: string
 
75
        default: ""
 
76
        description: "Set PYTHONPATH environment variable"