root/freepbx/branches/2.1/amportal.conf

Revision 2620, 3.7 kB (checked in by p_lindheimer, 7 years ago)

created AMPMODULEMSG to address #1136

  • 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 # AMPMGRUSER: the user to access the Asterisk manager interface
18 AMPMGRUSER=admin
19
20 # AMPMGRPASS: the password for AMPMGRUSER
21 AMPMGRPASS=amp111
22
23 # AMPBIN: where command line scripts live
24 AMPBIN=/var/lib/asterisk/bin
25
26 #AMPSBIN: where (root) command line scripts live
27 AMPSBIN=/usr/sbin
28
29 # AMPWEBROOT: the path to Apache's webroot (leave off trailing slash)
30 AMPWEBROOT=/var/www/html
31
32 # AMPCGIBIN: the path to Apache's cgi-bin dir (leave off trailing slash)
33 AMPCGIBIN=/var/www/cgi-bin
34
35 # AMPWEBADDRESS: the IP address or host name used to access the AMP web admin
36 #AMPWEBADDRESS=192.168.1.101
37 AMPWEBADDRESS=
38
39 # FOPWEBROOT:web root for the Flash Operator Panel
40 FOPWEBROOT=/var/www/html/panel
41
42 # FOPPASSWORD: the secret code for performing transfers and hangups in the Flash Operator Panel
43 FOPPASSWORD=passw0rd
44
45 # FOPSORT: FOP should sort extensions by Last Name [lastname] or by Extension [extension]
46 FOPSORT=extension
47
48 # AUTHTYPE: authentication type to use for web admin
49 # If type set to 'database', the primary AMP admin credentials will be the AMPDBUSER/AMPDBPASS above
50 # valid: none, database
51 AUTHTYPE=database
52
53 # AMPADMINLOGO: Defines the logo that is to be displayed at the TOP LEFT of the admin screen.
54 #         This enables you to customize the look of the administration screen.
55 # NOTE: images need to be saved in the ..../admin/images directory of your AMP install
56 # This image should be 55px in height
57 AMPADMINLOGO=freepbx.png
58
59 # AMPFOOTERLOGO: Defines the logo that is to be displayed at the BOTTOM RIGHT of the admin screen.
60 #         This enables you to customize the look of the administration screen.
61 # NOTE: images need to be saved in the ..../admin/images directory of your AMP install
62 # This image should be 40px in height
63 AMPFOOTERLOGO=blank.gif
64
65 # AMPADMINHREF: Defines the where a user is taken if they click on the footer logo
66 #         This enables you to customize the look of the administration screen.
67 AMPADMINHREF=www.freepbx.org
68
69 # AMPEXTENSIONS: the type of view for extensions admin
70 # If set to 'deviceanduser' Devices and Users will be administered seperately, and Users will be able to "login" to devices.
71 # If set to 'extensions' Devices and Users will me administered in a single screen.
72 AMPEXTENSIONS=extensions
73
74 # POST_RELOAD: automatically execute a script after applying changes in the AMP admin
75 # Set POST_RELOAD to the script you wish to execute after applying changes
76 # If POST_RELOAD_DEBUG=true, you will see the output of the script in the web page
77 # POST_RELOAD=
78 # POST_RELOAD_DEBUG=false
79
80 # ENABLECW: Enable call waiting by default when an extension is created
81 # Set to 'yes' it automatically creates the 'CW' key to enable call waiting, not
82 # requiring the user to dial *70 when their phone is first commissioned
83 ENABLECW=yes
84
85 # AMPMODULEXML lets you change the module repository that you use. By default, it
86 # should be set to http://mirror.freepbx.org/ - Presently, there are no third
87 # party module repositories.
88 AMPMODULEXML=http://mirror.freepbx.org/
89
90 # AMPMODULESVN is the prefix that is appended to <location> tags in the XML file.
91 # This should be set to http://mirror.freepbx.org/modules/
92 AMPMODULESVN=http://mirror.freepbx.org/modules/
93
94 # AMPMODULEMSG is URL used to search for warnings or messages in the online repository
95 # and should not be changed.
96 # AMPMODULEMSG=http://mirror.freepbx.org/
Note: See TracBrowser for help on using the browser.