Commit | Line | Data |
---|---|---|
b2e905a6 TN |
1 | ; |
2 | ; Asterisk Builtin mini-HTTP server | |
3 | ; | |
4 | ; | |
5 | [general] | |
6 | ; | |
7 | ; Whether HTTP interface is enabled or not. Default is no. | |
8 | ; | |
9 | ;enabled=yes | |
10 | ; | |
11 | ; Whether Asterisk should serve static content from http-static | |
12 | ; Default is no. | |
13 | ; | |
14 | ;enablestatic=yes | |
15 | ; | |
16 | ; Address to bind to. Default is 0.0.0.0 | |
17 | ; | |
18 | bindaddr=127.0.0.1 | |
19 | ; | |
20 | ; Port to bind to (default is 8088) | |
21 | ; | |
22 | bindport=8088 | |
23 | ; | |
24 | ; Prefix allows you to specify a prefix for all requests | |
25 | ; to the server. The default is "asterisk" so that all | |
26 | ; requests must begin with /asterisk | |
27 | ; | |
28 | ;prefix=asterisk | |
29 | ||
30 | ; The post_mappings section maps URLs to real paths on the filesystem. If a | |
31 | ; POST is done from within an authenticated manager session to one of the | |
32 | ; configured POST mappings, then any files in the POST will be placed in the | |
33 | ; configured directory. | |
34 | ; | |
35 | ;[post_mappings] | |
36 | ; | |
37 | ; In this example, if the prefix option is set to "asterisk", then using the | |
38 | ; POST URL: /asterisk/uploads will put files in /var/lib/asterisk/uploads/. | |
39 | ;uploads = /var/lib/asterisk/uploads/ | |
40 | ; |