summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--www/js/utils.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index 250b41e..6346a55 100644
--- a/README
+++ b/README
@@ -85,5 +85,5 @@ add the following to the virtualhost config:
Require valid-user
</Location>
- ProxyPass "/time" "ws://localhost:3000/time"
+ ProxyPass "/ntp" "ws://localhost:3000/ntp"
~~~/snip~~~
diff --git a/www/js/utils.js b/www/js/utils.js
index ea4f42b..cc0b657 100644
--- a/www/js/utils.js
+++ b/www/js/utils.js
@@ -163,7 +163,7 @@ function Clock(draw_callback) {
}
this.start = function() {
- this.sock = new WebSocket("wss://import.helsinki.at/ntp");
+ this.sock = new WebSocket("wss://" + window.location.host + "/ntp");
this.sock.onmessage = this.ntp_update.bind(this);
this.sock.onopen = this.sock_onopen.bind(this);
this.interval_redraw = setInterval(this.redraw.bind(this), 200);