forked from wildcardcorp/factored
-
Notifications
You must be signed in to change notification settings - Fork 0
/
develop.ini
69 lines (56 loc) · 1.45 KB
/
develop.ini
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[app:proxy]
use = egg:factored#simpleproxy
server = 127.0.0.1
port = 6543
urlscheme = http
[filter-app:main]
use = egg:factored#main
next = proxy
appname = REPLACEME
urlscheme = http
auth_tkt.secret = secret
auth_tkt.cookie_name = pnutbtr
auth_tkt.secure = false
#auth_tkt.include_ip = true
#auth_tkt.cookie_domain = 5.127.0.0.1
#auth_tkt.hashalg = md5
auth_timeout = 7200
auth_remember_timeout = 86400
base_auth_url = /auth
supported_auth_schemes =
Google Auth
Email
email_auth_window = 120
# in seconds
em.subject = Authentication Request
em.sender = foo@bar.com
em.body =
You have requested authentication.
Your temporary access code is: {code}
autouserfinder = Email Domain
autouserfinder.valid_domains =
gmail.com
allowcodereminder = true
allowcodereminder.subject = Authentication code reminder
allowcodereminder.sender = foo@bar.com
allowcodereminder.body =
You have requested code reminder.
Your auth code url is: {code}
pyramid.reload_templates = true
pyramid.debug_authorization = true
pyramid.debug_notfound = true
pyramid.debug_routematch = true
pyramid.default_locale_name = en
pyramid.includes =
pyramid_tm
pyramid_mailer
sqlalchemy.url = sqlite:///%(here)s/test.db
sqlalchemy.pool_recycle = 3600
# all mail settings can be found at http://packages.python.org/pyramid_mailer/#configuration
mail.host = debug
mail.port = 25
[server:main]
use = egg:Paste#http
# Change to 0.0.0.0 to make public:
host = 127.0.0.1
port = 8000