root/freepbx/trunk/amportal.conf

Revision 3069, 4.6 kB (checked in by gregmac, 7 years ago)

Added USECATEGORIES (from r3068)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # This file contains settings for components of the Asterisk Management Portal
2 # Spaces are not allowed!
3 # Run /usr/src/AMP/apply_conf.sh after making changes to this file
4
5 # AMPDBHOST: the host to connect to the database named 'asterisk'
6 AMPDBHOST=localhost
7
8 # AMPDBUSER: the user to connect to the database named 'asterisk'
9 AMPDBUSER=asteriskuser
10
11 # AMPDBENGINE: the type of database to use
12 AMPDBENGINE=mysql
13
14 # AMPDBPASS: the password for AMPDBUSER
15 AMPDBPASS=amp109
16
17 # AMPENGINE: the telephony backend engine to use
18 AMPENGINE=asterisk
19
20 # AMPMGRUSER: the user to access the Asterisk manager interface
21 AMPMGRUSER=admin
22
23 # AMPMGRPASS: the password for AMPMGRUSER
24 AMPMGRPASS=amp111
25
26 # AMPBIN: where command line scripts live
27 AMPBIN=/var/lib/asterisk/bin
28
29 #AMPSBIN: where (root) command line scripts live
30 AMPSBIN=/usr/sbin
31
32 # AMPWEBROOT: the path to Apache's webroot (leave off trailing slash)
33 AMPWEBROOT=/var/www/html
34
35 # AMPCGIBIN: the path to Apache's cgi-bin dir (leave off trailing slash)
36 AMPCGIBIN=/var/www/cgi-bin
37
38 # AMPWEBADDRESS: the IP address or host name used to access the AMP web admin
39 #AMPWEBADDRESS=192.168.1.101
40 AMPWEBADDRESS=
41
42 # FOPWEBROOT:web root for the Flash Operator Panel
43 FOPWEBROOT=/var/www/html/panel
44
45 # FOPPASSWORD: the secret code for performing transfers and hangups in the Flash Operator Panel
46 FOPPASSWORD=passw0rd
47
48 # FOPSORT: FOP should sort extensions by Last Name [lastname] or by Extension [extension]
49 FOPSORT=extension
50
51 # AUTHTYPE: authentication type to use for web admin
52 # If type set to 'database', the primary AMP admin credentials will be the AMPDBUSER/AMPDBPASS above
53 # valid: none, database
54 AUTHTYPE=database
55
56 # AMPADMINLOGO: Defines the logo that is to be displayed at the TOP LEFT of the admin screen.
57 #         This enables you to customize the look of the administration screen.
58 # NOTE: images need to be saved in the ..../admin/images directory of your AMP install
59 # This image should be 55px in height
60 AMPADMINLOGO=freepbx.png
61
62 # AMPFOOTERLOGO: Defines the logo that is to be displayed at the BOTTOM RIGHT of the admin screen.
63 #         This enables you to customize the look of the administration screen.
64 # NOTE: images need to be saved in the ..../admin/images directory of your AMP install
65 # This image should be 40px in height
66 AMPFOOTERLOGO=blank.gif
67
68 # AMPADMINHREF: Defines the where a user is taken if they click on the footer logo
69 #         This enables you to customize the look of the administration screen.
70 AMPADMINHREF=www.freepbx.org
71
72 # USECATEGORIES: Controls if the menu items in the admin interface are sorted by category (true),
73 #                or sorted alphebetically with no categories shown (false). Defaults to true.
74 #USECATEGORIES=false
75
76 # AMPEXTENSIONS: the type of view for extensions admin
77 # If set to 'deviceanduser' Devices and Users will be administered seperately, and Users will be able to "login" to devices.
78 # If set to 'extensions' Devices and Users will me administered in a single screen.
79 AMPEXTENSIONS=extensions
80
81 # POST_RELOAD: automatically execute a script after applying changes in the AMP admin
82 # Set POST_RELOAD to the script you wish to execute after applying changes
83 # If POST_RELOAD_DEBUG=true, you will see the output of the script in the web page
84 # POST_RELOAD=
85 # POST_RELOAD_DEBUG=false
86
87 # ENABLECW: Enable call waiting by default when an extension is created
88 # Set to 'yes' it automatically creates the 'CW' key to enable call waiting, not
89 # requiring the user to dial *70 when their phone is first commissioned
90 ENABLECW=yes
91
92 # The following are used to optionally have the freepbx backup program optionally
93 # send the generated backup to an ftp server
94 #
95 # FTPBACKUP=YES to enable
96 # FTPUSER, FTPPASSWORD, FTPSERVER must be set
97 # FTPSUBDIR is an optional subdirectory at the ftp server, it will cause ftp to do a cd
98 #
99 # There is no error checking so you should check to make sure these are set correctly. The
100 # ftp is saved after the backup, so it will not cause the local backup file to be effected
101 #
102 # FTPBACKUP=yes
103 #FTPUSER=asterisk
104 #FTPPASSWORD=password
105 #FTPSUBDIR=mybackupfolder
106 #FTPSERVER=myftpserver
107
108 # AMPMODULEXML lets you change the module repository that you use. By default, it
109 # should be set to http://mirror.freepbx.org/ - Presently, there are no third
110 # party module repositories.
111 AMPMODULEXML=http://mirror.freepbx.org/
112
113 # AMPMODULESVN is the prefix that is appended to <location> tags in the XML file.
114 # This should be set to http://mirror.freepbx.org/modules/
115 AMPMODULESVN=http://mirror.freepbx.org/modules/
116
117 # AMPMODULEMSG is URL used to search for warnings or messages in the online repository
118 # and should not be changed.
119 # AMPMODULEMSG=http://mirror.freepbx.org/
Note: See TracBrowser for help on using the browser.