From e355c402790edb2cd7552509824350d90a69a005 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 25 Jul 2005 22:38:54 +0000 Subject: [PATCH] add some basic documentation about asterisk.conf (bug #4758, rewritten) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6211 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- doc/README.asterisk.conf | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 doc/README.asterisk.conf diff --git a/doc/README.asterisk.conf b/doc/README.asterisk.conf new file mode 100755 index 0000000000..48da24b919 --- /dev/null +++ b/doc/README.asterisk.conf @@ -0,0 +1,35 @@ +Asterisk Main Configuration File +----------------------------------------------------- +Below is a sample of the main Asterisk configuration file, +asterisk.conf. Note that this file is _not_ provided in +sample form, because the Makefile creates it when needed +and does not touch it when it already exists. + +--------------- + +[directories] +; Make sure these directoriess have the right permissions if not +; running Asterisk as root + +; Where the configuration files (except for this one) are located +astetcdir => /etc/asterisk + +; Where the Asterisk loadable modules are located +astmoddir => /usr/lib/asterisk/modules + +; Where additional 'library' elements (scripts, etc.) are located +astvarlibdir => /var/lib/asterisk + +; Where AGI scripts/programs are located +astagidir => /var/lib/asterisk/agi-bin + +; Where spool directories are located +; Voicemail, monitor, dictation and other apps will create files here +; and outgoing call files (used with pbx_spool) must be placed here +astspooldir => /var/spool/asterisk + +; Where the Asterisk process ID (pid) file should be created +astrundir => /var/run/asterisk + +; Where the Asterisk log files should be created +astlogdir => /var/log/asterisk