I have an older server that needs to be able to post using TLS1.2/1.3.
I have a working TLS Proxy for a specific domain, but the customer has multiple sublevel domains.
Here is a sample of the current config:
name: MYCUSTOMER
in:
port: 83
out:
address: sub1.sub2.customerdomain.com
port: 443
protocol: HTTPS
tlsVersions: TLS12
idleTimeout: 120
httpHostOverride: sub1.sub2.customerdomain.com
httpXForwardedFor: true
If we modify the post to http://localhost:83/someURI, it works great, but while the domain is fixed, the sublevel might change without warning and I'd like to avoid creating dozens of tunnels for the various subs.
Is this config feasible?
name: MYCUSTOMER
in:
port: 83
out:
address: *.customerdomain.com
port: 443
protocol: HTTPS
tlsVersions: TLS12
idleTimeout: 120
httpHostOverride: *.customerdomain.com
httpXForwardedFor: true