block access to the go /debug/pprof/ endpoint
This commit is contained in:
parent
0113b9a565
commit
aa5c7ff8b4
4 changed files with 15 additions and 3 deletions
|
@ -89,7 +89,7 @@ def nginx(metadata):
|
|||
|
||||
wellknown = {
|
||||
'/.well-known/matrix/client': {
|
||||
'return': dumps({
|
||||
'content': dumps({
|
||||
'm.homeserver': {
|
||||
'base_url': 'https://{}'.format(metadata.get('matrix-synapse/baseurl')),
|
||||
},
|
||||
|
@ -98,15 +98,17 @@ def nginx(metadata):
|
|||
},
|
||||
**metadata.get('matrix-synapse/additional_client_config', {}),
|
||||
}, sort_keys=True),
|
||||
'return': 200,
|
||||
'additional_config': {
|
||||
'default_type application/json',
|
||||
'add_header Access-Control-Allow-Origin *',
|
||||
},
|
||||
},
|
||||
'/.well-known/matrix/server': {
|
||||
'return': dumps({
|
||||
'content': dumps({
|
||||
'm.server': '{}:443'.format(metadata.get('matrix-synapse/baseurl')),
|
||||
}, sort_keys=True),
|
||||
'return': 200,
|
||||
'additional_config': {
|
||||
'default_type application/json',
|
||||
'add_header Access-Control-Allow-Origin *',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue