Run this script on another machine, and switch in /etc/freeswitch/autoload_configs/xml_curl.conf.xml the URL for binding=configuration. Then relanch unifi-talk, and the new configuration should be fetched by freeswitch.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ACTION=="add", ENV{ID_PART_ENTRY_UUID}=="0b8e6986-ec09-8e44-b31f-38e944220a66", TAG+="systemd", ENV{SYSTEMD_WANTS}="offline-backup-connected.service" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.7' | |
services: | |
haraka: | |
image: oneuptime/haraka:release | |
expose: | |
- 2525 | |
networks: | |
- internal | |
restart: always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Please take the time to finish this file as described in | |
# https://sourceforge.net/p/lirc-remotes/wiki/Checklist/ | |
# and make it available to others by sending it to | |
# <[email protected]> | |
# | |
# This config file was automatically generated | |
# using lirc-0.10.1(default) on Fri May 21 20:37:33 2021 | |
# Command line used: -H default | |
# Kernel version (uname -r): 5.4.0-1035-raspi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var net = require('net'); | |
var kue = require('kue'); | |
var app = {}; | |
app.$queue = kue.createQueue(); | |
app.$queue.process('stream-demo', function(job, done) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var net = require('net'); | |
var kue = require('kue'); | |
var app = {}; | |
app.$queue = kue.createQueue(); | |
var job = app.$queue.create('stream-demo').save(); |