File tree 1 file changed +18
-3
lines changed
1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -140,11 +140,26 @@ Pomerium is configured via [configuration variables](/docs/reference) (environme
140
140
141
141
``` yaml title="config.yaml"
142
142
# Minimal example route
143
+ #
144
+ # Generate a shared secret by running head -c32 /dev/urandom | base64
145
+ # More on shared secrets at https://www.pomerium.com/docs/reference/shared-secret
143
146
shared_secret : REPLACE_ME
147
+
148
+ # Generate a cookie secret by running head -c32 /dev/urandom | base64
149
+ # More on cookie secrets at https://www.pomerium.com/docs/reference/cookies#cookie-secret
144
150
cookie_secret : REPLACE_ME
145
- idp_provider : google
146
- idp_client_id : REPLACE_ME
147
- idp_client_secret : REPLACE_ME
151
+
152
+ # If the Authenticate Service URL is not set, the Pomerium Hosted Authenticate Service will be used.
153
+ # See https://www.pomerium.com/docs/reference/service-urls#authenticate-service-url
154
+ #
155
+ # authenticate_service_url: REPLACE_ME
156
+ #
157
+ # For more information on identity provider settings, see https://pomerium.com/docs/reference/identity-provider-settings
158
+ #
159
+ # idp_provider: REPLACE_ME
160
+ # idp_client_id: REPLACE_ME
161
+ # idp_client_secret: REPLACE_ME
162
+
148
163
address : :443
149
164
150
165
routes :
You can’t perform that action at this time.
0 commit comments