diff --git a/README.md b/README.md index c7b93b9..c23a510 100644 --- a/README.md +++ b/README.md @@ -228,15 +228,15 @@ The SSH ecosystem allowsy out define and call subsystems with the `-s` flag. In #### All -`list` Lists avaiable subsystem -`sftp`: Runs the sftp handler to transfer files +`list` Lists avaiable subsystem +`sftp`: Runs the sftp handler to transfer files #### Linux -`setgid`: Attempt to change group -`setuid`: Attempt to change user +`setgid`: Attempt to change group +`setuid`: Attempt to change user #### Windows -`service`: Installs or removes the rssh binary as a windows service, requires administrative rights +`service`: Installs or removes the rssh binary as a windows service, requires administrative rights e.g diff --git a/internal/server/webserver/webserver.go b/internal/server/webserver/webserver.go index 303b3a9..fdea874 100644 --- a/internal/server/webserver/webserver.go +++ b/internal/server/webserver/webserver.go @@ -33,8 +33,8 @@ func Start(webListener net.Listener, connectBackAddress, projRoot string, public } srv := &http.Server{ - ReadTimeout: 2 * time.Second, - WriteTimeout: 2 * time.Second, + ReadTimeout: 20 * time.Second, + WriteTimeout: 20 * time.Second, Handler: buildAndServe(projRoot, connectBackAddress, validPlatforms, validArchs), }