root/freepbx/trunk/amportal.conf

Revision 5032, 5.1 kB (checked in by p_lindheimer, 6 years ago)

Change default amportal.conf file (new installs) to FOPRUN=true

  • 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 # FOPRUN: set to true if you want FOP started by freepbx_engine (amportal_start), false otherwise
52 FOPRUN=true
53
54 # AUTHTYPE: authentication type to use for web admin
55 # If type set to 'database', the primary AMP admin credentials will be the AMPDBUSER/AMPDBPASS above
56 # valid: none, database
57 AUTHTYPE=none
58
59 # AMPADMINLOGO: Defines the logo that is to be displayed at the TOP 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 55px in height
63 AMPADMINLOGO=logo.png
64
65 # USECATEGORIES: Controls if the menu items in the admin interface are sorted by category (true),
66 #                or sorted alphebetically with no categories shown (false). Defaults to true.
67 #USECATEGORIES=false
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 (DEFAULT is yes)
81 # Set to 'no' to if you don't want phones to be commissioned with call waiting already
82 # enabled. The user would then be required to dial the CW feature code (*70 default) to
83 # enable their phone. Most installations should leave this alone. It allows multi-line
84 # phones to receive multiple calls on their line appearances.
85 ENABLECW=yes
86
87 #CWINUSEBUSY: Set to yes for extensions that have CW enabled to report as busy if
88 # they don't answer (resulting in busy voicemail greeting). Otherwise they simply
89 # report as no-answer (e.g. busy greeting servers no purpose
90 CWINUSEBUSY=yes
91
92 # AMPBADNUMBER: Set to false if you do not want the bad-number context generated which
93 # traps any bogus number or freature code and plays a message to the effect. If you use
94 # the Early Dial feature on some Grandstream phones, you will want to set this to false
95 AMPBADNUMBER=true
96
97 # The following are used to optionally have the freepbx backup program optionally
98 # send the generated backup to an ftp server
99 #
100 # FTPBACKUP=YES to enable
101 # FTPUSER, FTPPASSWORD, FTPSERVER must be set
102 # FTPSUBDIR is an optional subdirectory at the ftp server, it will cause ftp to do a cd
103 #
104 # There is no error checking so you should check to make sure these are set correctly. The
105 # ftp is saved after the backup, so it will not cause the local backup file to be effected
106 #
107 # FTPBACKUP=yes
108 #FTPUSER=asterisk
109 #FTPPASSWORD=password
110 #FTPSUBDIR=mybackupfolder
111 #FTPSERVER=myftpserver
112
113 # SSH BACKUP INFO: must have a valid SSHRSAKEY file and server, only supported through
114 # ssh. SUBDIR is optional and will be created if it does not exist.
115 #
116 # If SSHUSER is not set, it will default to the current user which is asterisk in any
117 # standard configuration.
118 #
119 #SSHBACKUP=yes
120 #SSHUSER=backups
121 #SSHRSAKEY=/etc/asterisk/backup_rsa
122 #SSHSUBDIR=mysubdir
123 #SSHSERVER=mybackupserver.com
124
125 # AMPPROVROOT=/var/ftp /tftpboot
126 # One or more directories where there are provisioning files that should be included in the backup. Currently
127 # these get backed up only, the FreePBX utility does not automatically restore them.
128 #
129 #AMPPROVROOT=/var/ftp /tftpboot
130 # AMPPROVEXCLUDE=/var/ftp/exclude-from-file-list
131 # a list of files to exclude, to be used in tar's --exclude-from argument
132 #
133 #AMPPROVEXCLUDE=/var/ftp/exclude-from-file-list
134
Note: See TracBrowser for help on using the browser.