diff options
author | BenoƮt Gianinetti <benoit.gianinetti@sonarsource.com> | 2019-04-03 15:26:57 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-04-09 20:21:05 +0200 |
commit | 6fe2c0ddd848b7b176660bdb2d37d1fb56309375 (patch) | |
tree | c689eec4671ecac9e3f620e9b0c90b0dd8c1500c | |
parent | 9dec7d925caaf1647a3f119417f24f48594abba3 (diff) | |
download | sonarqube-6fe2c0ddd848b7b176660bdb2d37d1fb56309375.tar.gz sonarqube-6fe2c0ddd848b7b176660bdb2d37d1fb56309375.zip |
DOC Remove base64 encoding from 'setting your private key' step in GHE integration
-rw-r--r-- | server/sonar-docs/src/pages/instance-administration/github-application.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/server/sonar-docs/src/pages/instance-administration/github-application.md b/server/sonar-docs/src/pages/instance-administration/github-application.md index 6d3442937cd..7bff51883be 100644 --- a/server/sonar-docs/src/pages/instance-administration/github-application.md +++ b/server/sonar-docs/src/pages/instance-administration/github-application.md @@ -27,10 +27,8 @@ From the "Register new GitHub App" page, follow these steps to create your GitHu After creating your app, you'll be prompted with a link to "generate a private key" at the top of the page. Click the link to download your .pem private key file. You can also download your .pem file by scrolling down to "Private Key" and clicking **Generate Private Key**. -After downloading your .pem file, you'll need to set your private key at a global level in SonarQube by following these steps: - -1. Generate a base64 encoded string with your .pem private key file using `base64 -w0 /path/to/key.pem` on Linux or `base64 -i /path/to/key.pem` on MacOS. -2. Copy and paste the base64-encoded content of your private key file into the text box at [**Administration > Pull Requests > GitHub > GitHub App private key**](/#sonarqube-admin#/sonarqube/admin/settings?category=pull_request/). +After downloading your .pem file, you'll need to set your private key at a global level in SonarQube. +Simply copy and paste the content of your private key file into the text box at [**Administration > Pull Requests > GitHub > GitHub App private key**](/#sonarqube-admin#/sonarqube/admin/settings?category=pull_request/). ### Configuring Your SonarQube Instance |