summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-12-23 20:13:14 +0000
committerRussell Bryant <russell@russellbryant.com>2006-12-23 20:13:14 +0000
commit2c5071a0061bd14316d78419eec0c98c7969c346 (patch)
treee676ee2c3ffe1fb8682681fdc7a33bdc181c6406 /CHANGES
parent08cfbe97b84184cfe6050a0eec744d4768480107 (diff)
- Convert the list of URI handlers to use the linked list macros. While doing
this, implementing locking of this list to make it thread-safe. - Add a "redirect" option to http.conf that allows redirecting one URI to another. I was inspired to do this while playing with the Asterisk GUI. I got tired of typing this URL to get to the GUI: http://localhost:8088/asterisk/static/config/cfgadvanced.html So, now I have the following line in http.conf: redirect=/=/asterisk/static/config/cfgadvanced.html Now, I can type the following into my browser and go to the GUI: http://localhost:8088 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48930 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 70d818898..76d90a0c1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -64,4 +64,4 @@ Changes since Asterisk 1.4-beta was branched:
* Added maxfiles option to options section of asterisk.conf which allows you to specify
what Asterisk should set as the maximum number of open files when it loads.
* Added the jittertargetextra configuration option.
-
+ * Added the URI redirect option for the built-in HTTP server