We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello again,
Have you thought about providing HTTPS support?
I got a crude version working by adding this code into Server.js...
Server.js
const https = require('https'); const fs = require('fs'); const options = { cert: fs.readFileSync('/Users/tmo2367/Certs/localhost-cert.pem'), key: fs.readFileSync('/Users/tmo2367/Certs/localhost-key.pem'), passphrase: 'XXXXX' }; https.createServer(options, this.app).listen(8443);
You'd want HTTPS to be enabled via a flag, and also the 3 option values too.
This is useful as I'm doing AWS Cognito integration, passing the user back to your serverless app requires a HTTPS URL to be added into Cognito.
Shall I make a PR if you're interested and not already started this?
Thanks, /t
The text was updated successfully, but these errors were encountered:
featureflagtech@f3a2001
Sorry, something went wrong.
No branches or pull requests
Hello again,
Have you thought about providing HTTPS support?
I got a crude version working by adding this code into
Server.js
...You'd want HTTPS to be enabled via a flag, and also the 3 option values too.
This is useful as I'm doing AWS Cognito integration, passing the user back to your serverless app requires a HTTPS URL to be added into Cognito.
Shall I make a PR if you're interested and not already started this?
Thanks,
/t
The text was updated successfully, but these errors were encountered: