Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
d09749ea
Unverified
Commit
d09749ea
authored
Jun 04, 2018
by
Marcus Efraimsson
Committed by
GitHub
Jun 04, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12153 from grafana/googleOAuthDocs
update google auth config docs
parents
58406707
9b29a196
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
13 deletions
+21
-13
docs/sources/installation/configuration.md
+21
-13
No files found.
docs/sources/installation/configuration.md
View file @
d09749ea
...
...
@@ -419,25 +419,33 @@ allowed_organizations = github google
## [auth.google]
You need to create a Google project. You can do this in the
[
Google
Developer Console](https://console.developers.google.com/project). When
you create the project you will need to specify a callback URL. Specify
this as callback:
First, you need to create a Google OAuth Client:
```
bash
http://<my_grafana_server_name_or_ip>:<grafana_server_port>/login/google
```
1.
Go to https://console.developers.google.com/apis/credentials
This callback URL must match the full HTTP address that you use in your
browser to access Grafana, but with the prefix path of
`/login/google`
.
When the Google project is created you will get a Client ID and a Client
Secret. Specify these in the Grafana configuration file. For example:
2.
Click the 'Create Credentials' button, then click 'OAuth Client ID' in the
menu that drops down
3.
Enter the following:
-
Application Type: Web Application
-
Name: Grafana
-
Authorized Javascript Origins: https://grafana.mycompany.com
-
Authorized Redirect URLs: https://grafana.mycompany.com/login/google
Replace https://grafana.mycompany.com with the URL of your Grafana instance.
4.
Click Create
5.
Copy the Client ID and Client Secret from the 'OAuth Client' modal
Specify the Client ID and Secret in the Grafana configuration file. For example:
```
bash
[
auth.google]
enabled
=
true
client_id
=
YOUR_GOOGLE_APP_
CLIENT_ID
client_secret
=
YOUR_GOOGLE_APP_
CLIENT_SECRET
client_id
=
CLIENT_ID
client_secret
=
CLIENT_SECRET
scopes
=
https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email
auth_url
=
https://accounts.google.com/o/oauth2/auth
token_url
=
https://accounts.google.com/o/oauth2/token
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment