~charmers/charms/precise/gunicorn/trunk

« back to all changes in this revision

Viewing changes to config.yaml

  • Committer: Patrick Hetu
  • Date: 2012-06-13 17:41:05 UTC
  • Revision ID: patrick.hetu@gmail.com-20120613174105-340xvaef4q4iqrkp
fix gunicorn configuration

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
        type: int
24
24
        default: 2048
25
25
        description: "The maximum number of pending connections."
26
 
    wsgi_preload:
27
 
        type: string
28
 
        default: "False"
29
 
        description: "Load application code before the worker processes are forked."
30
26
    wsgi_timeout:
31
27
        type: int
32
28
        default: 30
33
29
        description: ""
34
 
    wsgi_keepalive:
 
30
    wsgi_keep_alive:
35
31
        type: int
36
32
        default: 2
37
33
        description: ""
38
 
    wsgi_debug:
39
 
        type: string
40
 
        default: "False"
41
 
        description: "Turn on debugging in the server."
42
34
    wsgi_umask:
43
35
        type: string
44
36
        default: "0"
51
43
        type: string
52
44
        default: "www-data"
53
45
        description: "Switch worker process to run as this group. A valid group id (as an int) or the name."
54
 
    wsgi_error_logfile:
 
46
    wsgi_log_file:
55
47
        type: string
56
 
        default: ""
57
 
        description: "The Error log file to write to. If empty the file would be <your_application_dir>/gunicorn.log"
 
48
        default: "-"
 
49
        description: "The log file to write to. If empty the file would be <your_application_dir>/gunicorn.log"
58
50
    wsgi_log_config:
59
51
        type: string
60
 
        default: ""
 
52
        default: "None"
61
53
        description: "The log config file to use. Gunicorn uses the standard Python logging module's Configuration file format."
62
54
    wsgi_log_level:
63
55
        type: string
65
57
        description: "The granularity of Error log outputs."
66
58
    wsgi_access_logfile:
67
59
        type: string
68
 
        default: ""
 
60
        default: "-"
69
61
        description: "The Access log file to write to."
70
62
    wsgi_access_logformat:
71
63
        type: string
72
64
        default: '%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"'
73
65
        description: "The Access log format ."
74
 
    
75
 
    
 
66
    wsgi_extra:
 
67
        type: string
 
68
        default: ""
 
69
        description: "Extra settings. For example: {--debug},"