mirror of
https://github.com/asterisk/asterisk.git
synced 2026-05-04 20:33:53 +00:00
configs: Move sample config files into a subdirectory of configs
This moves all samples configs from configs/ to configs/samples. This allows for additional sets of sample configuration files to be added in the future. Review: https://reviewboard.asterisk.org/r/3804/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@418870 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
69
configs/samples/cel_tds.conf.sample
Normal file
69
configs/samples/cel_tds.conf.sample
Normal file
@@ -0,0 +1,69 @@
|
||||
;
|
||||
; Asterisk Channel Event Logging (CEL) - FreeTDS Backend
|
||||
;
|
||||
|
||||
;[global]
|
||||
|
||||
; Connection
|
||||
;
|
||||
; Use the 'connection' keyword to specify one of the instance names from your
|
||||
; 'freetds.conf' file. Note that 'freetds.conf' is not an Asterisk
|
||||
; configuration file, but one specific to the FreeTDS library. See the FreeTDS
|
||||
; documentation on 'freetds.conf' for more information:
|
||||
;
|
||||
; http://www.freetds.org/userguide/freetdsconf.htm
|
||||
;
|
||||
; Accepted values: One of the connections specified in freetds.conf
|
||||
|
||||
;connection=ConnectionFromFreeTDSConf
|
||||
|
||||
; Database Name
|
||||
;
|
||||
; The 'dbname' keyword specifies the database name to use when logging CEL
|
||||
; records.
|
||||
;
|
||||
; Accepted values: Any valid database name
|
||||
|
||||
;dbname=MalicoHN
|
||||
|
||||
; Database Table Name
|
||||
;
|
||||
; The 'table' keyword identifies which database table is used to log CEL
|
||||
; records.
|
||||
;
|
||||
; Accepted value: Any valid table name
|
||||
; Default value: If not specified, a table named 'cel' is assumed
|
||||
|
||||
;table=cel
|
||||
|
||||
; Credentials
|
||||
;
|
||||
; The 'username' and 'password' keywords specify the user credentials that
|
||||
; Asterisk should use when connecting to the database.
|
||||
;
|
||||
; Accepted value: Any valid username and password
|
||||
|
||||
;username=mangUsr
|
||||
;password=
|
||||
|
||||
; Language
|
||||
;
|
||||
; The 'language' keyword changes the language which are used for error and
|
||||
; information messages returned by SQL Server. Each database and user has their
|
||||
; own default value, and this default can be overriden here.
|
||||
;
|
||||
; Accepted value: Any language installed on the target SQL Server.
|
||||
; Default value: Server default
|
||||
|
||||
;language=us_english
|
||||
|
||||
; Character Set
|
||||
;
|
||||
; The 'charset' setting is used to change the character set used when connecting
|
||||
; to the database server. Each database and database user has their own
|
||||
; character set setting, and this default can be overriden here.
|
||||
;
|
||||
; Accepted value: Any valid character set available on the target server.
|
||||
; Default value: Server setting
|
||||
|
||||
;charset=BIG5
|
||||
Reference in New Issue
Block a user