This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathdemo.conf
60 lines (49 loc) · 1.53 KB
/
demo.conf
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
[general]
appname=ramona-demo
logdir=./log
logmaxsize=10000
[env]
RAMONADEMO=test
RAMONAdemo1=test2
STRIGAROOT=
DEVNULL=/dev/null
FOO=bar
[env:alternative1]
BAR=foo
[ramona:server]
#consoleuri=unix:///tmp/ramona-demo.sock?mode=0600
#consoleuri=tcp://127.0.0.1:8899?ssl=1&certfile=democert.pem
consoleuri=tcp://127.0.0.1:8889
pidfile=./ramona-demo.pid
log=<logdir>/ramona-demo.log
[ramona:notify]
#delivery=smtp://user:[email protected]:587/?tls=1
[ramona:console]
#serveruri=unix:///tmp/ramona-demo.sock
#serveruri=tcp://127.0.0.1:8899?ssl=1&certfile=democert.pem
serveruri=tcp://127.0.0.1:8889
history=~/.ramona_demo_history
[program:hellocycle]
command=bash -c "sleep 1; echo ahoj1 ttot neni error nebo je; sleep 1; echo ja nevim;sleep 1; echo error to je; sleep 1; echo -n err; sleep 2; echo or; sleep 1; ls --help; sleep 1"
stdout=<stderr>
stderr=<logdir>
[program:testdisabled]
disabled=true
command=tail -f /dev/null
[program:two]
# Uses [env:alternative1]
env=alternative1
command=bash -c "while true; do date; echo Bar '(should print foo):' ${BAR}; echo 'Foo (should be blank):' ${FOO}; sleep 1; done"
[program:ramonahttpfend]
command=<httpfend>
loglevel=DEBUG
listen=tcp://localhost:4455,tcp://[::1]:5588
#username=admin
# Can get either plain text or a SHA1 hash, if the password starts with {SHA} prefix
#password=password
# SHA example. To generate use for example: echo -n "secret" | sha1sum
#password={SHA}e5e9fa1ba31ecd1ae84f75caaa474f3a663f05f4
[program:testexit]
command=bash -c "exit 2"