12345678910111213141516171819202122232425262728293031 |
- /**
- * Threema Web configuration.
- *
- * The various options are explained in the `README.md` file.
- */
- export default {
- // General
- SELF_HOSTED: false,
- // SaltyRTC
- SALTYRTC_HOST: null,
- SALTYRTC_HOST_PREFIX: 'saltyrtc-',
- SALTYRTC_HOST_SUFFIX: '.threema.ch',
- SALTYRTC_PORT: 443,
- SALTYRTC_SERVER_KEY: 'b1337fc8402f7db8ea639e05ed05d65463e24809792f91eca29e88101b4a2171',
- // ICE
- ICE_SERVERS: [{
- urls: [
- 'turn:turn.threema.ch:443?transport=udp',
- 'turn:turn.threema.ch:443?transport=tcp'
- ],
- username: 'threema-angular',
- credential: 'Uv0LcCq3kyx6EiRwQW5jVigkhzbp70CjN2CJqzmRxG3UGIdJHSJV6tpo7Gj7YnGB',
- }],
- // Push
- PUSH_URL: 'https://push-web.threema.ch/push',
- } as threema.Config;
|