forked from pgrok/pgrok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgrokd.exmaple.yml
42 lines (39 loc) · 1.14 KB
/
pgrokd.exmaple.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# The external facing URL what will appear in the browser address bar.
external_url: "http://localhost:3320"
# Settings for the web server.
web:
# The listening port of the web server.
port: 3320
# Settings for the proxy server.
proxy:
# The listening port of the proxy server.
port: 3000
# The scheme of the proxy URLs. Set "https" only if you have configured Wildcard SSL.
scheme: "http"
# The domain name of the proxy URLs.
domain: "localhost:3000"
# Settings for the SSH server.
sshd:
# The listening port of the SSH server.
port: 2222
# Settings for the database.
database:
host: "localhost"
port: 5432
user: "REDACTED"
password: "REDACTED"
database: "pgrokd"
# Settings for the identity provider.
identity_provider:
# The type of the identity provider, only "oidc" is supported for now.
type: "oidc"
display_name: "Google"
issuer: "https://accounts.google.com"
client_id: "REDACTED"
client_secret: "REDACTED"
field_mapping:
identifier: "email"
display_name: "name"
email: "email"
# # The required domain name, "field_mapping.email" is required to set for this to work.
# required_domain: "example.com"