-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patch SP to provide correct configuration OOB.
- Loading branch information
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
|
||
set -x | ||
set -e | ||
|
||
SPDIR="docker/SIP.js/demo/saraphone" | ||
|
||
git -C "${SPDIR}" apply "`pwd`/patches/saraphone.diff" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
diff --git a/saraphone.html b/saraphone.html | ||
index 7c8de2a..6024c5a 100644 | ||
--- a/saraphone.html | ||
+++ b/saraphone.html | ||
@@ -93,8 +93,12 @@ var audio_silence = new Audio("wav/silence.wav"); | ||
<tr> | ||
<td> <input style="background-color: black;" size=25 id="proxy" value="fusion03-pkg.opentelecom.it" /></td><td> WSS Proxy Name </td> | ||
</tr> | ||
+ <script> | ||
+ document.getElementById('domain').value = window.location.hostname; | ||
+ document.getElementById('proxy').value = window.location.hostname; | ||
+ <script> | ||
<tr> | ||
- <td> <input style="background-color: black;" size=25 id="port" value="7443" /></td><td> WSS Proxy Port </td> | ||
+ <td> <input style="background-color: black;" size=25 id="port" value="9876" /></td><td> WSS Proxy Port </td> | ||
</tr> | ||
<tr> | ||
<td> <input style="background-color: black;" size=25 id="pres1" value="1011" /></td><td> BLF1 </td> |