Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
K
koko
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
koko
Commits
bd3d0119
Commit
bd3d0119
authored
Jul 18, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改telnet的无法连接
parent
458b7cd8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
file_manager.html
cmd/templates/elfinder/file_manager.html
+1
-1
server.go
pkg/httpd/server.go
+1
-1
proxy.go
pkg/proxy/proxy.go
+1
-1
No files found.
cmd/templates/elfinder/file_manager.html
View file @
bd3d0119
...
...
@@ -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'
})
...
...
pkg/httpd/server.go
View file @
bd3d0119
...
...
@@ -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
))
...
...
pkg/proxy/proxy.go
View file @
bd3d0119
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment