2 ; Asterisk Builtin mini-HTTP server
7 ; Whether HTTP/HTTPS interface is enabled or not. Default is no.
8 ; This also affects manager/rawman/mxml access (see manager.conf)
12 ; Address to bind to, both for HTTP and HTTPS. Default is 0.0.0.0
16 ; Port to bind to for HTTP sessions (default is 8088)
20 ; Prefix allows you to specify a prefix for all requests
21 ; to the server. The default is "asterisk" so that all
22 ; requests must begin with /asterisk
26 ; Whether Asterisk should serve static content from http-static
31 ; Redirect one URI to another. This is how you would set a
33 ; Syntax: redirect=<from here> <to there>
34 ; For example, if you are using the Asterisk-gui,
35 ; it is convenient to enable the following redirect:
37 ;redirect = / /asterisk/static/config/cfgbasic.html
39 ; HTTPS support. In addition to enabled=yes, you need to
40 ; explicitly enable ssl, define the port to use,
41 ; and have a certificate somewhere.
42 ; sslenable=yes ; enable ssl - default no.
43 ; sslbindport=4433 ; port to use - default is 8089
44 ; sslbindaddr=0.0.0.0 ; address to bind to - default is bindaddr.
46 ; sslcert=/tmp/foo.pem ; path to the certificate
48 ; To produce a certificate you can e.g. use openssl
49 ; openssl req -new -x509 -days 365 -nodes -out /tmp/foo.pem -keyout /tmp/foo.pem
53 ; The post_mappings section maps URLs to real paths on the filesystem. If a
54 ; POST is done from within an authenticated manager session to one of the
55 ; configured POST mappings, then any files in the POST will be placed in the
56 ; configured directory.
60 ; In this example, if the prefix option is set to "asterisk", then using the
61 ; POST URL: /asterisk/uploads will put files in /var/lib/asterisk/uploads/.
62 ;uploads = /var/lib/asterisk/uploads/