Commit bd3d0119 authored by ibuler's avatar ibuler

[Update] 修改telnet的无法连接

parent 458b7cd8
......@@ -98,7 +98,7 @@
}
if (lng !== 'en') {
$.ajax({
url : '/static/plugins/elfinder/i18n'+'/elfinder.'+lng+'.js',
url : '/coco/static/plugins/elfinder/i18n'+'/elfinder.'+lng+'.js',
cache : true,
dataType : 'script'
})
......
......@@ -51,7 +51,7 @@ func StartHTTPServer() {
router := mux.NewRouter()
fs := http.FileServer(http.Dir(filepath.Join(conf.RootPath, "static")))
router.PathPrefix("/coco/static/").Handler(http.StripPrefix("/static/", fs))
router.PathPrefix("/coco/static/").Handler(http.StripPrefix("/coco/static/", fs))
router.Handle("/socket.io/", sshWs)
router.HandleFunc("/coco/elfinder/sftp/{host}/", AuthDecorator(sftpHostFinder))
......
......@@ -151,7 +151,7 @@ func (p *ProxyServer) getServerConn() (srvConn srvconn.ServerConnection, err err
close(done)
}()
go p.sendConnectingMsg(done, config.GetConf().SSHTimeout*time.Second)
if p.Asset.Protocol == "telnet" {
if p.SystemUser.Protocol == "telnet" {
return p.getTelnetConn()
} else {
return p.getSSHConn(false)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment