Files
proxy-inspector/README.md
2024-03-30 16:32:59 +08:00

31 lines
575 B
Markdown

# proxy-inspector
`proxy_config.json` sample config:
```json
{
"groups": [
{
"port": 443,
"lookup_dns": true,
"tls": {
"intermediate_cert": "intermediate_cert.pem",
"intermediate_key": "intermediate_pri_key.pem"
},
"proxy_map": {
"hatter.ink": {
"address": "101.132.122.240:443",
"tls": true
}
}
}
]
}
```
Important
* intermediate certificate only tested ECDSA(P384) with SHA384
* P384 with SHA256 is NOT supported
* P256 with SHA256 should be supported, but not tested