EOSIO / history-tools

EOSIO History Tools
https://eosio.github.io/history-tools/
MIT License
65 stars 45 forks source link

add https server functionality #78

Open Thomas55777 opened 4 years ago

Thomas55777 commented 4 years ago

for regular nodeos we have the https-server-address parameter. Can you please add in https functionality for the wasm ql server wql-listen

tbfleming commented 4 years ago

There are 2 common camps:

  1. All servers should support https
  2. It's a maintenance nightmare keeping up with mitigations for the never-ending stream of new https attacks. Leave it to the experts who maintain reverse proxies.

I'm in the 2nd camp. nginx is a good choice.

Thomas55777 commented 4 years ago

Makes sense. I will use the second approach. Thank you