Skip to content

Commit

Permalink
Mark exec-agent, terminal, wsmaster servers secure
Browse files Browse the repository at this point in the history
  • Loading branch information
sleshchenko committed Jul 12, 2018
1 parent efaef7e commit e142d37
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 14 deletions.
Expand Up @@ -9,12 +9,18 @@
"exec-agent/http": {
"port": "4412/tcp",
"protocol": "http",
"path" : "/process"
"path" : "/process",
"attributes": {
"secure": "true"
}
},
"exec-agent/ws": {
"port": "4412/tcp",
"protocol": "ws",
"path": "/connect"
"path": "/connect",
"attributes": {
"secure": "true"
}
}
}
}
Expand Up @@ -9,12 +9,18 @@
"exec-agent/http": {
"port": "4412/tcp",
"protocol": "http",
"path" : "/process"
"path" : "/process",
"attributes": {
"secure": "true"
}
},
"exec-agent/ws": {
"port": "4412/tcp",
"protocol": "ws",
"path": "/connect"
"path": "/connect",
"attributes": {
"secure": "true"
}
}
}
}
Expand Up @@ -9,7 +9,10 @@
"terminal": {
"port": "4411/tcp",
"protocol": "ws",
"path" : "/pty"
"path" : "/pty",
"attributes": {
"secure": "true"
}
}
}
}
Expand Up @@ -9,7 +9,10 @@
"terminal": {
"port": "4411/tcp",
"protocol": "ws",
"path" : "/pty"
"path" : "/pty",
"attributes": {
"secure": "true"
}
}
}
}
Expand Up @@ -12,12 +12,18 @@
"wsagent/http": {
"port": "4401/tcp",
"protocol": "http",
"path" : "/api"
"path" : "/api",
"attributes": {
"secure": "true"
}
},
"wsagent/ws": {
"port": "4401/tcp",
"protocol": "ws",
"path" : "/wsagent"
"path" : "/wsagent",
"attributes": {
"secure": "true"
}
}
}
}
Expand Up @@ -12,12 +12,18 @@
"wsagent/http": {
"port": "4401/tcp",
"protocol": "http",
"path" : "/api"
"path" : "/api",
"attributes": {
"secure": "true"
}
},
"wsagent/ws": {
"port": "4401/tcp",
"protocol": "ws",
"path" : "/wsagent"
"path" : "/wsagent",
"attributes": {
"secure": "true"
}
},
"wsagent-debug": {
"port": "4403/tcp",
Expand Down
Expand Up @@ -12,12 +12,18 @@
"wsagent/http": {
"port": "4401/tcp",
"protocol": "http",
"path" : "/api"
"path" : "/api",
"attributes": {
"secure": "true"
}
},
"wsagent/ws": {
"port": "4401/tcp",
"protocol": "ws",
"path" : "/wsagent"
"path" : "/wsagent",
"attributes": {
"secure": "true"
}
},
"wsagent-debug": {
"port": "4403/tcp",
Expand Down
Expand Up @@ -9,12 +9,18 @@
"wsagent/http": {
"port": "4401/tcp",
"protocol": "http",
"path" : "/api"
"path" : "/api",
"attributes": {
"secure": "true"
}
},
"wsagent/ws": {
"port": "4401/tcp",
"protocol": "ws",
"path" : "/wsagent"
"path" : "/wsagent",
"attributes": {
"secure": "true"
}
},
"wsagent-debug": {
"port": "4403/tcp",
Expand Down

0 comments on commit e142d37

Please sign in to comment.