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
Thu May 08 2014 12:36:17 GMT+0100 (GMT Daylight Time) | jssip.rtcsession | re-INVITE received jssip-devel.js:142 | |
Thu May 08 2014 12:36:17 GMT+0100 (GMT Daylight Time) | jssip.rtcsession.rtcmediahandler | unable to set local description jssip-devel.js:142 | |
Thu May 08 2014 12:36:17 GMT+0100 (GMT Daylight Time) | jssip.rtcsession.rtcmediahandler | Failed to set local answer sdp: Failed to push down transport description: Offerer must use actpass value for setup attribute. jssip-devel.js:142 | |
Thu May 08 2014 12:36:17 GMT+0100 (GMT Daylight Time) | jssip.transaction.ist | emitting event stateChanged jssip-devel.js:142 | |
Thu May 08 2014 12:36:17 GMT+0100 (GMT Daylight Time) | jssip.transaction.ist | TypeError: Cannot read property 'call' of undefined | |
at Object.EventEmitter.emit (http://192.168.142.170:8000/js/jssip-devel.js:396:23) | |
at Object.InviteServerTransaction.stateChanged (http://192.168.142.170:8000/js/jssip-devel.js:2609:8) | |
at Object.InviteServerTransaction.receiveResponse (http://192.168.142.170:80 |
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
docker run -i -t debian:wheezy /bin/bash | |
docker run -i -t ubuntu:precise /bin/bash | |
docker run -i -t ubuntu:trusty /bin/bash | |
apt-get update | |
apt-get install -y puppet | |
puppet module install trulabs-kamailio | |
#puppet module install puppetlabs-apt |
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
# one of: | |
docker run -i -t debian:wheezy /bin/bash | |
docker run -i -t ubuntu:precise /bin/bash | |
docker run -i -t ubuntu:trusty /bin/bash | |
apt-get update | |
apt-get install -y git && apt-get install -y puppet && apt-get install -y vim | |
mkdir -p git/trulabs && cd git/trulabs && git clone https://github.com/trulabs/puppet-asterisk.git && cd puppet-asterisk | |
git checkout -b runswithd6s-config-updates master |
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
// Source: https://github.com/einaros/ws | |
var WebSocketServer = require('ws').Server | |
, wss = new WebSocketServer({ port: 8080 }); | |
wss.on('connection', function connection(ws) { | |
ws.on('message', function incoming(message) { | |
console.log('received: %s', message); | |
}); |
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
FROM ubuntu:14.04 | |
MAINTAINER Giacomo Vacca "[email protected]" | |
ENV REFRESHED_AT 2015-01-19 | |
RUN apt-get update | |
RUN apt-get upgrade -y | |
RUN apt-get install -y nodejs |
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
gvacca@my_vm:/home/gvacca/docker/nodejs_ws$ docker build -t gvacca/nodejs_ws . | |
Sending build context to Docker daemon 3.584 kB | |
Sending build context to Docker daemon | |
Step 0 : FROM ubuntu:14.04 | |
---> c4ff7513909d | |
Step 1 : MAINTAINER Giacomo Vacca "[email protected]" | |
---> Using cache | |
---> 3f2b9c40e974 | |
Step 2 : ENV REFRESHED_AT 2015-01-19 | |
---> Using cache |
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
(function(){ | |
"use strict"; | |
var fs = require('fs'); | |
// you'll probably load configuration from config | |
var cfg = { | |
ssl: true, | |
port: 8080, |
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
var ws_cfg = { | |
ssl: true, | |
port: 8080, | |
ssl_key: '/path/to/ssl.key', | |
ssl_cert: '/path/to/ssl.crt' | |
}; | |
var processRequest = function(req, res) { | |
console.log("Request received.") | |
}; |
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
# As root | |
apt-get update | |
apt-get upgrade | |
apt-get autoremove | |
adduser gvacca | |
gpasswd -a gvacca sudo | |
# change ssh port and PermitRootLogin (to no) |
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
LASTCOMMIT=$(git rev-parse --short HEAD) | |
CONFVERSION=$LASTCOMMIT | |
TAG=$(git show-ref --tags -d | grep ^${LASTCOMMIT} | sed -e 's,.* refs/tags/,,' -e 's/\^{}//') | |
if [ "$TAG" != "" ] | |
then | |
CONFVERSION=$TAG | |
fi |
OlderNewer