comparison development.ini @ 8899:af20f57282ff i18n

Merge stable
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 30 May 2021 01:34:48 +0200
parents d483e2df546f
children
comparison
equal deleted inserted replaced
8881:078e2bb7d402 8899:af20f57282ff
79 79
80 ## middleware for hosting the WSGI application under a URL prefix 80 ## middleware for hosting the WSGI application under a URL prefix
81 #[filter:proxy-prefix] 81 #[filter:proxy-prefix]
82 #use = egg:PasteDeploy#prefix 82 #use = egg:PasteDeploy#prefix
83 #prefix = /<your-prefix> 83 #prefix = /<your-prefix>
84 #translate_forwarded_server = False
84 85
85 [app:main] 86 [app:main]
86 use = egg:kallithea 87 use = egg:kallithea
87 ## enable proxy prefix middleware 88 ## enable proxy prefix middleware
88 #filter-with = proxy-prefix 89 #filter-with = proxy-prefix
109 app_instance_uuid = development-not-secret 110 app_instance_uuid = development-not-secret
110 111
111 ## cut off limit for large diffs (size in bytes) 112 ## cut off limit for large diffs (size in bytes)
112 cut_off_limit = 256000 113 cut_off_limit = 256000
113 114
114 ## force https in Kallithea, fixes https redirects, assumes it's always https 115 ## WSGI environment variable to get the IP address of the client (default REMOTE_ADDR)
115 force_https = false 116 #remote_addr_variable = HTTP_X_FORWARDED_FOR
116 117
117 ## use Strict-Transport-Security headers 118 ## WSGI environment variable to get the protocol (http or https) of the client connection (default wsgi.url_scheme)
118 use_htsts = false 119 #url_scheme_variable = HTTP_X_FORWARDED_PROTO
120
121 ## always pretend the client connected using HTTPS (default false)
122 #force_https = true
123
124 ## use Strict-Transport-Security headers (default false)
125 #use_htsts = true
119 126
120 ## number of commits stats will parse on each iteration 127 ## number of commits stats will parse on each iteration
121 commit_parse_limit = 25 128 commit_parse_limit = 25
122 129
123 ## Path to Python executable to be used for git hooks. 130 ## Path to Python executable to be used for git hooks.