mirror of
https://github.com/jambonz/jambonz-infrastructure.git
synced 2026-01-25 02:08:27 +00:00
27 lines
795 B
YAML
27 lines
795 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
namespace: jambonz
|
|
name: jambonz-sbc-sip-conf
|
|
data:
|
|
drachtio.conf.xml: |
|
|
<drachtio>
|
|
|
|
<!-- udp port to listen on for client connections and shared secret used to authenticate clients -->
|
|
<admin port="9022" secret="cymru">0.0.0.0</admin>
|
|
<request-handlers>
|
|
<request-handler sip-method="INVITE" http-method="POST">http://sbc-call-router:3000</request-handler>
|
|
<request-handler sip-method="REGISTER">http://sbc-call-router:3000</request-handler>
|
|
</request-handlers>
|
|
<sip>
|
|
<udp-mtu>4096</udp-mtu>
|
|
</sip>
|
|
|
|
<cdrs>false</cdrs>
|
|
|
|
<logging>
|
|
<sofia-loglevel>3</sofia-loglevel>
|
|
<loglevel>info</loglevel>
|
|
</logging>
|
|
|
|
</drachtio> |