2006-03-25 23:50:09 +00:00
|
|
|
;
|
|
|
|
; Asterisk Builtin mini-HTTP server
|
|
|
|
;
|
|
|
|
;
|
|
|
|
[general]
|
|
|
|
;
|
2006-04-01 08:49:54 +00:00
|
|
|
; Whether HTTP interface is enabled or not. Default is no.
|
2006-03-25 23:50:09 +00:00
|
|
|
;
|
2006-04-01 08:49:54 +00:00
|
|
|
;enabled=yes
|
2006-03-25 23:50:09 +00:00
|
|
|
;
|
2006-04-01 08:49:54 +00:00
|
|
|
; Whether Asterisk should serve static content from http-static
|
|
|
|
; Default is no.
|
|
|
|
;
|
|
|
|
;enablestatic=yes
|
|
|
|
;
|
|
|
|
; Address to bind to. Default is 0.0.0.0
|
2006-03-25 23:50:09 +00:00
|
|
|
;
|
|
|
|
bindaddr=127.0.0.1
|
|
|
|
;
|
2006-04-01 08:49:54 +00:00
|
|
|
; Port to bind to (default is 8088)
|
2006-03-25 23:50:09 +00:00
|
|
|
;
|
|
|
|
bindport=8088
|
|
|
|
;
|
|
|
|
; Prefix allows you to specify a prefix for all requests
|
|
|
|
; to the server. The default is "asterisk" so that all
|
|
|
|
; requests must begin with /asterisk
|
|
|
|
;
|
|
|
|
;prefix=asterisk
|
2007-04-06 20:58:43 +00:00
|
|
|
|
|
|
|
; The post_mappings section maps URLs to real paths on the filesystem. If a
|
|
|
|
; POST is done from within an authenticated manager session to one of the
|
|
|
|
; configured POST mappings, then any files in the POST will be placed in the
|
|
|
|
; configured directory.
|
|
|
|
;
|
|
|
|
;[post_mappings]
|
|
|
|
;
|
|
|
|
; In this example, if the prefix option is set to "asterisk", then using the
|
|
|
|
; POST URL: /asterisk/uploads will put files in /var/lib/asterisk/uploads/.
|
|
|
|
;uploads = /var/lib/asterisk/uploads/
|
|
|
|
;
|