forked from alaxli/AnsibleUI2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansibleui.ini
31 lines (26 loc) · 880 Bytes
/
ansibleui.ini
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
# mysite_uwsgi.ini file
[uwsgi]
# Django-related settings
# the base directory (full path)
chdir = /data/search/AnsibleUI2
# Django's wsgi file
module = AnsibleUI2.wsgi:application
# the virtualenv (full path)
home = /data/search/envansible
# process-related settings
# master
master = true
pidfile = /data/search/AnsibleUI2/ansibleui.pid
# maximum number of worker processes
processes = 4
# the socket (use the full path to be safe
socket = localhost:9001
# ... with appropriate permissions - may be needed
# chmod-socket = 664
# clear environment on exit
vacuum = true
# worker-reload-mercy = 5s
mount = /ansibleui=AnsibleUI2.wsgi:application
manage-script-name = true
daemonize = /data/search/AnsibleUI2/ansibleui.log
log-format = %(addr) - [%(time)] [%(ltime)] "%(uri)" %(status) %(msecs) %(size)