-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb.json
111 lines (110 loc) · 3.5 KB
/
web.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"run_list": [ "recipe[main::default]", "recipe[nginx::default]", "recipe[python::default]", "recipe[gunicorn::default]", "recipe[repositories::default]" ],
"project_directory": "/home/manuel/project_chef/",
"user": {
"default": {
"username": "manuel",
"home_directory": "/home/manuel/"
}
},
"repositories": {
"directory_name": "src",
"git": [{"name": "maigfrga-template",
"url": "https://github.com/maigfrga/maigfrga-template.git"},
{"name": " nt-rackspace-cloud-servers",
"url": "https://github.com/maigfrga/nt-rackspace-cloud-servers.git"},
{"name": "nt-monitor",
"url": "https://github.com/maigfrga/nt-monitor.git"},
{"name": "nt-python-sysadmin",
"url": "https://github.com/maigfrga/nt-python-sysadmin.git"},
{"name": "Standford-algo",
"url": "https://github.com/maigfrga/Standford-algo.git"},
{"name": "django-bootstrap-scripts",
"url": "https://github.com/maigfrga/django-bootstrap-scripts.git"}]
},
"python": {
"virtualenv": {
"name": "django",
"path": "/home/manuel/.virtualenvs/django-manuel",
"owner": "manuel",
"group": "manuel"
},
"webapp":{
"name": "myapp"
},
"supervisor": {
"unix_http_server": {
"file": "/tmp/supervisor.sock",
"chmod": "0700"
},
"supervisord":{
"logfile": "/tmp/supervisord.log",
"logfile_maxbytes": "50MB",
"logfile_backups": 10,
"loglevel": "info",
"pidfile": "/tmp/supervisord.pid",
"nodaemon": "false",
"minfds": 1024,
"minprocs": 200
}
}
},
"nginx": {
"version": "1.2.3",
"dir": "/etc/nginx",
"log_dir": "/var/log/nginx",
"binary": "/usr/sbin/nginx",
"user": "www-data",
"pid": "/var/run/nginx.pid",
"pid_file": "nginx.pid",
"pid_path": "/opt/nginx-1.2.3/run/",
"gzip": "on",
"gzip_http_version": "1.0",
"gzip_comp_level": "2",
"gzip_proxied": "any",
"daemon_disable": "true",
"gzip_types": [
"text/plain",
"text/css",
"application/x-javascript",
"text/xml",
"application/xml",
"application/xml+rss",
"text/javascript",
"application/javascript",
"application/json"
],
"server": {
"listen": "8080",
"server_name": "localhost"
},
"keepalive": "on",
"keepalive_timeout": 65,
"worker_processes": 2,
"worker_connections": 1024,
"server_names_hash_bucket_size": 64,
"disable_access_log": "false",
"default_site_enabled": "true",
"source": {
"url": "http://www.nginx.org/download/nginx-1.2.3.tar.gz",
"modules": [
"http_ssl_module",
"http_gzip_static_module"
],
"prefix": "/opt/nginx-"
}
},
"gunicorn":{
"listen": "127.0.0.1:8888",
"log_dir": "/var/log/gunicorn",
"backlog": 2048,
"worker_processes": 4,
"worker_class": "sync",
"worker_timeout": 45,
"worker_keepalive": 2,
"worker_max_requests": 0,
"owner": "manuel",
"group": "manuel",
"pid": "/var/run/gunicorn.pid"
}
}