Shamith
Shamith

Reputation: 21

Express Gateway disable TLSv1.0

I'm working with "Express Gateway" which is running on a node server.

As of my understanding, configurations should be done in gateway.config.yml file.

I couldn't find how to disable TLSv 1.0 from the documentation provided by "Express Gateway".

Any suggestions?

Upvotes: 2

Views: 150

Answers (1)

Vincenzo
Vincenzo

Reputation: 1559

I'm sorry for the late reply!

We support this scenario but unfortunately it's not exactly that straightforward. This should do the trick:

https:
  options:
    secureOptions: 67108864

This is basically hardcoding the constant value that disables TLS1. If you could open an issue on the repository I'm quite sure we can find a more systematic solution for this.

Thanks!

Upvotes: 1

Related Questions