Skip to content
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

Add support for Google OAuth Scheme Override #775

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/pages/kb/open-source/admin-guide/env-vars-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ most installs) can be set in `/opt/redash/.env`. When developing with Docker, cr
The follow is a list of settings and what they control:

| Name | Description | Default Value |
|-------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------|
| ----------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------ |
| `REDASH_ADDITIONAL_DESTINATIONS` | Comma-separated list of non-default alert destinations to be enabled | |
| `REDASH_ADDITIONAL_QUERY_RUNNERS` | Comma-separated list of non-default query runners to be enabled | |
| `REDASH_ADHOC_QUERY_TIME_LIMIT` | Time limit for adhoc queries (in seconds) | None |
Expand Down Expand Up @@ -42,6 +42,7 @@ The follow is a list of settings and what they control:
| `REDASH_FEATURE_DISABLE_REFRESH_QUERIES` | Disable scheduled query execution | false |
| `REDASH_FEATURE_SHOW_PERMISSIONS_CONTROL` | Enable experimental multiple owners support | false |
| `REDASH_FEATURE_SHOW_QUERY_RESULTS_COUNT` | Disable/enable showing count of query results in status | true |
| `REDASH_GOOGLE_OAUTH_SCHEME_OVERRIDE` | Override the scheme used for Google OAuth. This is useful when running Redash behind a reverse proxy that terminates SSL. | |
| `REDASH_GOOGLE_CLIENT_ID` | The client ID to use for Google Login, be sure to set a client secret as well | |
| `REDASH_GOOGLE_CLIENT_SECRET` | The client secret to use for Google Login, be sure to set a client id as well | |
| `REDASH_HOST` | The URL host used in emails sent to users (invites, alerts, notifications) etc. | |
Expand Down Expand Up @@ -91,7 +92,7 @@ The follow is a list of settings and what they control:
| `REDASH_SAML_NAMEID_FORMAT` | | |
| `REDASH_SCHEDULED_QUERY_TIME_LIMIT` | Time limit for scheduled queries (in seconds) | None |
| `REDASH_SCHEMAS_REFRESH_SCHEDULE` | How often to refresh the data source schemas (in minutes) | 30 |
| `REDASH_SCHEMAS_REFRESH_TIMEOUT` | Time limit for refreshing the data source schemas (in seconds) | 300 |
| `REDASH_SCHEMAS_REFRESH_TIMEOUT` | Time limit for refreshing the data source schemas (in seconds) | 300 |
| `REDASH_SCHEMA_RUN_TABLE_SIZE_CALCULATIONS` | Enable showing the size of each table in the schema browser. | false |
| `REDASH_SENTRY_DSN` | | |
| `REDASH_STATIC_ASSETS_PATH` | Directory that contains all front-end assets. Relative to the ./redash directory | ”../client/dist/” |
Expand Down