mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
fix: werkzeug >= 0.15.0 compatibility (fix #303)
This commit is contained in:
parent
ec6e305f2f
commit
384e88d2c6
8 changed files with 116 additions and 48 deletions
|
|
@ -24,12 +24,6 @@ acl = basic
|
|||
# list the misc/audit directory to see the available backends
|
||||
# default is no audit log
|
||||
audit = basic
|
||||
# you can change the prefix if you are behind a reverse-proxy under a custom
|
||||
# root path. For example: /burpui
|
||||
# You can also configure your reverse-proxy to announce the prefix through the
|
||||
# 'X-Script-Name' header. In this case, the bellow prefix will be ignored in
|
||||
# favour of the one announced by your reverse-proxy
|
||||
prefix = none
|
||||
# list of paths to look for external plugins
|
||||
plugins = none
|
||||
|
||||
|
|
@ -88,6 +82,21 @@ limiter = false
|
|||
# limiter ratio
|
||||
# see https://flask-limiter.readthedocs.io/en/stable/#ratelimit-string
|
||||
ratio = 60/minute
|
||||
# you can change the prefix if you are behind a reverse-proxy under a custom
|
||||
# root path. For example: /burpui
|
||||
# You can also configure your reverse-proxy to announce the prefix through the
|
||||
# 'X-Script-Name' header. In this case, the bellow prefix will be ignored in
|
||||
# favour of the one announced by your reverse-proxy
|
||||
prefix = none
|
||||
# ProxyFix
|
||||
# number of reverse-proxy to trust in order to retrieve some HTTP headers
|
||||
# All the details can be found here:
|
||||
# https://werkzeug.palletsprojects.com/en/0.15.x/middleware/proxy_fix/#module-werkzeug.middleware.proxy_fix
|
||||
num_proxies = 0
|
||||
# alternatively, you can specify your own ProxyFix args.
|
||||
# The default is: "{'x_for': {num_proxies}, 'x_host': {num_proxies}, 'x_prefix': {num_proxies}}"
|
||||
# if num_proxies > 0, else it defaults to ProxyFix defaults
|
||||
proxy_fix_args = "{'x_for': {num_proxies}, 'x_host': {num_proxies}, 'x_prefix': {num_proxies}}"
|
||||
|
||||
[WebSocket]
|
||||
## This section contains WebSocket server specific options.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue