Phoenix Query server does not support https. Here is reply from Karan Mehta, PQS committer.
<>
PQS doesn't offer https out of the box. What it enables is something called as ServerCustomizer. It is an interface that allows you to customize the embedded jetty server. Since most companies usually have their security standard, I didn't want to hardcode in it.
Internally, we have secured our endpoint with SSL certificates and client authentication as well. There isn't any good documentation (sorry about that).
Here are the relevant steps:
1. Fork the code for internal use case
2. Enable server customizers
here3. Create our own factory
here4. Add your customizer logic and build it and use
</>