├── .github └── workflows │ ├── go.yml │ ├── master.yaml │ └── release.yaml ├── .gitignore ├── .goreleaser.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Dockerfile.goreleaser ├── Documentation ├── pjsip-ext-ext.svg ├── pjsip-int-ext.svg └── pjsip-int-int.svg ├── LICENSE ├── README.md ├── check.sh ├── defaults ├── ari.conf ├── ari.d │ ├── k8s-asterisk-config.conf.tmpl │ └── keep.conf ├── ari_custom.conf ├── asterisk.conf ├── cdr.conf ├── cdr_custom.conf ├── cli.conf ├── cli.d │ └── keep.conf ├── cli_custom.conf ├── confbridge.conf ├── extensions.conf ├── extensions.d │ └── keep.conf ├── extensions_custom.conf ├── http.conf ├── indications.conf ├── logger.conf ├── manager.conf ├── manager.d │ └── keep.conf ├── manager_custom.conf ├── modules.conf ├── musiconhold.conf ├── pjsip.conf ├── pjsip.d │ ├── k8s-asterisk-config.conf.tmpl │ └── keep.conf ├── pjsip_custom.conf ├── voicemail.conf ├── voicemail.d │ └── keep.conf └── voicemail_custom.conf ├── go.mod ├── go.sum ├── main.go ├── random.go └── release.sh /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/.github/workflows/master.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.goreleaser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/Dockerfile.goreleaser -------------------------------------------------------------------------------- /Documentation/pjsip-ext-ext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/Documentation/pjsip-ext-ext.svg -------------------------------------------------------------------------------- /Documentation/pjsip-int-ext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/Documentation/pjsip-int-ext.svg -------------------------------------------------------------------------------- /Documentation/pjsip-int-int.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/Documentation/pjsip-int-int.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/README.md -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/check.sh -------------------------------------------------------------------------------- /defaults/ari.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/ari.conf -------------------------------------------------------------------------------- /defaults/ari.d/k8s-asterisk-config.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/ari.d/k8s-asterisk-config.conf.tmpl -------------------------------------------------------------------------------- /defaults/ari.d/keep.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/ari_custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/ari_custom.conf -------------------------------------------------------------------------------- /defaults/asterisk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/asterisk.conf -------------------------------------------------------------------------------- /defaults/cdr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/cdr.conf -------------------------------------------------------------------------------- /defaults/cdr_custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/cdr_custom.conf -------------------------------------------------------------------------------- /defaults/cli.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/cli.conf -------------------------------------------------------------------------------- /defaults/cli.d/keep.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/cli_custom.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/confbridge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/confbridge.conf -------------------------------------------------------------------------------- /defaults/extensions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/extensions.conf -------------------------------------------------------------------------------- /defaults/extensions.d/keep.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/extensions_custom.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/http.conf -------------------------------------------------------------------------------- /defaults/indications.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/indications.conf -------------------------------------------------------------------------------- /defaults/logger.conf: -------------------------------------------------------------------------------- 1 | [general] 2 | 3 | [logfiles] 4 | 5 | console = verbose,notice,warning,error 6 | 7 | -------------------------------------------------------------------------------- /defaults/manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/manager.conf -------------------------------------------------------------------------------- /defaults/manager.d/keep.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/manager_custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/manager_custom.conf -------------------------------------------------------------------------------- /defaults/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/modules.conf -------------------------------------------------------------------------------- /defaults/musiconhold.conf: -------------------------------------------------------------------------------- 1 | [general] 2 | 3 | [default] 4 | mode = files 5 | directory = moh 6 | -------------------------------------------------------------------------------- /defaults/pjsip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/pjsip.conf -------------------------------------------------------------------------------- /defaults/pjsip.d/k8s-asterisk-config.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/pjsip.d/k8s-asterisk-config.conf.tmpl -------------------------------------------------------------------------------- /defaults/pjsip.d/keep.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/pjsip_custom.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/voicemail.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/defaults/voicemail.conf -------------------------------------------------------------------------------- /defaults/voicemail.d/keep.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults/voicemail_custom.conf: -------------------------------------------------------------------------------- 1 | [general] 2 | format = wav49|gsm|wav 3 | 4 | [default] 5 | 6 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/main.go -------------------------------------------------------------------------------- /random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/random.go -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyCoreSystems/asterisk-config/HEAD/release.sh --------------------------------------------------------------------------------