markster: trunk r73 - in /trunk: Makefile README
asterisk-gui-commits at lists.digium.com
asterisk-gui-commits at lists.digium.com
Mon Oct 16 14:32:09 MST 2006
Author: markster
Date: Mon Oct 16 16:32:08 2006
New Revision: 73
URL: http://svn.digium.com/view/asterisk-gui?rev=73&view=rev
Log:
Minor cleanups
Modified:
trunk/Makefile
trunk/README
Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk-gui/trunk/Makefile?rev=73&r1=72&r2=73&view=diff
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Mon Oct 16 16:32:08 2006
@@ -95,7 +95,7 @@
fi
@echo -n "* Checking if manager is enabled: "
- @if grep -v ^\; $(ASTETCDIR)/manager.conf | grep enabled | grep -q yes 2>/dev/null; then \
+ @if grep -v ^\; $(ASTETCDIR)/manager.conf | grep ^enabled | grep -q yes 2>/dev/null; then \
echo "OK" ; \
else \
echo "FAILED"; \
Modified: trunk/README
URL: http://svn.digium.com/view/asterisk-gui/trunk/README?rev=73&r1=72&r2=73&view=diff
==============================================================================
--- trunk/README (original)
+++ trunk/README Mon Oct 16 16:32:08 2006
@@ -25,3 +25,34 @@
Bugs, patches, and feature requests may be submitted at http://bugs.digium.com
and should reference the GUI project.
+Installation
+============
+
+# make
+# make install
+
+Configuration
+=============
+You may install sample configuration files by doing "make samples". Also you
+will need to edit your Asterisk configuration files to enable the GUI properly,
+specifically:
+
+1) In http.conf:
+
+ enabled = yes
+ enablestatic = yes
+
+2) In manager.conf
+
+ enabled = yes
+ webenabled = yes
+
+3) Create an appropriate entry in manager.conf for the administrative user
+(PLEASE READ THE security.txt FILE!)
+
+ [admin]
+ secret = thiswouldbeaninsecurepassword
+ read = system,call,log,verbose,command,agent,config
+ write = system,call,log,verbose,command,agent,config
+
+to
More information about the asterisk-gui-commits
mailing list