-
-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ssh): make inactivity timeout configurable #990
Conversation
With this change, the SSH inactivity timeout is now configurable. By default, is set at 5 minutes (300 seconds), which was the already existing value.
Thank you! |
Are you sure, this change is workly? I tested this change and session was killed after 5 minute. |
We've had this in production for some weeks and is working correctly. Did you change the configuration value in the YAML file? |
|
It needs to be in a valid For example, we've set it up as |
I changed this but again it not works. I see, PR have status failed. Maybe this change is not in main branch? |
Any update? @NefixEstrada @Eugeny |
@przemekjagielski post your config file |
`sso_providers: [] |
Here's my configuration file for ssh: ssh:
enable: true
listen: "0.0.0.0:2222"
keys: /var/lib/warpgate/ssh-keys
host_key_verification: prompt
inactivity_timeout: 30m Which version are you using? Did you compile from the main branch? Because there hasn't been a release since december, which doesn't have the changes in this PR |
With this change, the SSH inactivity timeout is now configurable. By default, is set at 5 minutes (300 seconds), which was the already existing value.
Solves #943