Add drop_unauthorized parameter to proxy hosts

drop_unauthorized returns 444 when a client is not authorized as opposed
to 403. It can be used with Client Certificate authorization.
This commit is contained in:
Will Rouesnel
2023-05-29 14:43:11 +10:00
parent f601105776
commit 6cf91a2e70
11 changed files with 85 additions and 4 deletions

View File

@@ -82,6 +82,7 @@
"ssl_forced": 0,
"caching_enabled": 0,
"block_exploits": 0,
"drop_unauthorized": 0,
"advanced_config": "sdfsdfsdf",
"meta": {
"letsencrypt_agree": false,
@@ -124,6 +125,7 @@
"ssl_forced": 0,
"caching_enabled": 0,
"block_exploits": 0,
"drop_unauthorized": 0,
"advanced_config": "",
"meta": {
"letsencrypt_agree": false,
@@ -204,6 +206,7 @@
"ssl_forced": 0,
"caching_enabled": 0,
"block_exploits": 0,
"drop_unauthorized": 0,
"advanced_config": "",
"meta": {
"letsencrypt_agree": false,
@@ -1117,6 +1120,7 @@
"ssl_forced",
"caching_enabled",
"block_exploits",
"drop_unauthorized",
"advanced_config",
"meta",
"allow_websocket_upgrade",
@@ -1184,6 +1188,9 @@
"block_exploits": {
"type": "integer"
},
"drop_unauthorized": {
"type": "integer"
},
"advanced_config": {
"type": "string"
},