-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault_config.yaml
35 lines (29 loc) · 1.25 KB
/
default_config.yaml
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
---
# Default configuration values for My first Flask OAuth tool.
#
# This YAML file provides default settings for the Flask application. Rather
# than editing this file directly, create a file named 'config.yaml' in the
# same directory containing the keys and values that you wish to override.
#
# Some settings are commented out. These are used to show secret settings
# that MUST be provided in a 'config.yaml' file. Secret settings like
# password, OAuth tokens, and cryptographic seeds should never be commited to
# version control.
#
# See http://flask.pocoo.org/docs/0.12/config/ for other settings that may be
# useful.
# Session cookies should only be sent over HTTPS secured connections
SESSION_COOKIE_SECURE: True
# Only send the cookie header to the client when its content changes
SESSION_REFRESH_EACH_REQUEST: False
# Generate https://... links by default
PREFERRED_URL_SCHEME: https
# Flask secret key. Used to create secure session cookies among other things.
# This should be a complex random value.
#SECRET_KEY:
# OAuth key and secret. These are generated for you by
# [[Special:OAuthConsumerRegistration/propose]]
#CONSUMER_KEY:
#CONSUMER_SECRET:
# Base URI to use when making OAuth requests to MediaWiki
OAUTH_MWURI: https://meta.wikimedia.org/w/index.php