Skip to content

Commit

Permalink
fixed a problem with the remote ssh connection (misconfiguration)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amir Kibbar committed Dec 23, 2016
1 parent 1802237 commit 1b5e0fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ For example, to run it with the above GitHub token on port 8080:
The service provides a /healthcheck URI which returns 200 when the service is ready. The service also provides a
/metrics URI which returns a set of useful metrics about the service.

In addition port 2005 (by default, configure with shell.ssh.port) listens to SSH sessions, this is considered an
In addition port 2005 (by default, configure with **management.shell.ssh.port**) listens to SSH sessions, this is considered an
internal API to the service to debug it.

# Architecture
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'idea'
apply plugin: 'maven-publish'

group = "ajk.ghcache"
version = '0.0.1'
version = '0.0.2'

repositories {
jcenter()
Expand Down
7 changes: 4 additions & 3 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ server:
mime-types: application/json
min-response-size: 1024

shell:
ssh:
port: 2005
management:
shell:
ssh:
port: 2005

info:
build:
Expand Down

0 comments on commit 1b5e0fa

Please sign in to comment.