summaryrefslogtreecommitdiffstats
path: root/http.conf
diff options
context:
space:
mode:
authorJeffrey C. Ollie <jeff@ocjtech.us>2009-10-12 22:54:13 -0500
committerJeffrey C. Ollie <jeff@ocjtech.us>2009-10-12 22:54:13 -0500
commit7ec6acb6cb3ab5b3740d02a66146a8cf1925bd8a (patch)
treeddc37bcc1237bbe67dd88c26b192349349d5b5ed /http.conf
downloadftalk-asterisk-configs-7ec6acb6cb3ab5b3740d02a66146a8cf1925bd8a.tar.gz
ftalk-asterisk-configs-7ec6acb6cb3ab5b3740d02a66146a8cf1925bd8a.tar.xz
ftalk-asterisk-configs-7ec6acb6cb3ab5b3740d02a66146a8cf1925bd8a.zip
Sanitized configs from Fedora TalkHEADmaster
Diffstat (limited to 'http.conf')
-rw-r--r--http.conf40
1 files changed, 40 insertions, 0 deletions
diff --git a/http.conf b/http.conf
new file mode 100644
index 0000000..f8a86f8
--- /dev/null
+++ b/http.conf
@@ -0,0 +1,40 @@
+;
+; Asterisk Builtin mini-HTTP server
+;
+;
+[general]
+;
+; Whether HTTP interface is enabled or not. Default is no.
+;
+;enabled=yes
+;
+; Whether Asterisk should serve static content from http-static
+; Default is no.
+;
+;enablestatic=yes
+;
+; Address to bind to. Default is 0.0.0.0
+;
+bindaddr=127.0.0.1
+;
+; Port to bind to (default is 8088)
+;
+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
+
+; 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/
+;