A Stash administrator can enable SSH access to Git repositories in Stash. This allows your Stash users to:
- add their own SSH keys to Stash
- use those SSH keys to secure Git operations between their computer and the Stash server.
Stash users must each add their own SSH key pairs to their Stash account to be able to use SSH access to repositories.
Supported key types are DSA and RSA2. Note that RSA1 is not supported. We've tested key sizes of 768, 1024, 2048, 4096 and 8192 bytes.
On this page:
Related pages:
Enabling SSH access
To enable SSH access:
- Go to the Stash administration area and click Server settings (under 'Settings').
- Under 'SSH access', check SSH enabled.
- Enter values for SSH port and SSH base URL, according the information in the sections below.
- Click Save.
SSH base URL
The SSH base URL is the base URL with which users can access the SSH push/pull/clone functionality of Stash.
This is the base URL that Stash will use when displaying SSH URLs to users. If you do not set this, it will default to the host that is set in Stash base URL, with the port that SSH is listening on. See Specifying the base URL for Stash.
If you set up port forwarding, you will need to set the SSH base URL to the machine and port that is being forwarded to Stash. However, you do not need to specify the port portion of the URL if the default SSH port (port 22) is being forwarded to Stash.
|
| Port forwarding | SSH base URL | Stash base URL | SSH port | Resulting SSH URL for a repo |
|---|---|---|---|---|
| Not set |
| 7999 | ssh://git@stash.atlassian.com:7999/<projectname>/<reponame>.git | |
|
| 7999 | ssh://git@stash.atlassian.com/<projectname>/<reponame>.git |
When running Stash behind a proxy
If you run Stash behind a http proxy such as Apache (e.g. as per our instructions), and if Apache runs on a different host, SSH will not be available on that host. Instead, you will need to set the SSH base URL to the machine Stash is actually running on (and the URL should include the SSH port Stash is serving from).
If you set up port forwarding, you will need to set the SSH base URL to the proxy machine and port that is being forwarded to Stash. However, you do not need to specify the port portion of the URL if the default SSH port (port 22) is being forwarded to Stash.
|
| Port forwarding | SSH base URL | SSH port | Stash base URL | Resulting SSH URL for a repo |
|---|---|---|---|---|
ssh://stash.backend.atlassian.com:7999 | 7999 |
| ssh://git@stash.backend.atlassian.com:7999/<projectname>/<reponame>.git | |
Port 22 -> 7999 |
| 7999 |
| ssh://git@stash.atlassian.com/<projectname>/<reponame>.git |
Port 44 -> 7999 |
| 7999 |
| ssh://git@stash.atlassian.com:44/<projectname>/<reponame>.git |