diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-01-05 15:49:13 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-01-05 15:49:13 (GMT) |
commit | 2383f77970c87504b96677e010a8aa954d6955f5 (patch) | |
tree | 11666ae2cf01af7bd78cc328cd36487722487094 /src/helsinki.at/rhimportd/ctrlWeb.go | |
parent | 283c85305cb09c964ed3ad2783a47a6f5297c9c7 (diff) |
disabled trusted web interface
Diffstat (limited to 'src/helsinki.at/rhimportd/ctrlWeb.go')
-rw-r--r-- | src/helsinki.at/rhimportd/ctrlWeb.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helsinki.at/rhimportd/ctrlWeb.go b/src/helsinki.at/rhimportd/ctrlWeb.go index ba4760a..c1cd4b5 100644 --- a/src/helsinki.at/rhimportd/ctrlWeb.go +++ b/src/helsinki.at/rhimportd/ctrlWeb.go @@ -45,7 +45,7 @@ func (self webHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { func StartControlWeb(addr string, conf *rhimport.Config, rddb *rhimport.RdDbChan, sessions *rhimport.SessionStoreChan) { http.Handle("/public/simple", webHandler{conf, rddb, sessions, false, webSimpleHandler}) - http.Handle("/trusted/simple", webHandler{conf, rddb, sessions, true, webSimpleHandler}) + // http.Handle("/trusted/simple", webHandler{conf, rddb, sessions, true, webSimpleHandler}) http.Handle("/public/socket", webHandler{conf, rddb, sessions, false, webSocketHandler}) |