-
-
Notifications
You must be signed in to change notification settings - Fork 614
New issue
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
WIP #203 Fixing issue with mixed content #211
WIP #203 Fixing issue with mixed content #211
Conversation
450712f
to
f8c3ef7
Compare
Thanks for opening this PR @AdrianAcala! Unfortunately, I tested locally and this doesn’t seem to work. Specifically, I generated an HTTPS certificate and key, then configured |
Yes your approach was the first one I though. Issue is req never gets into that because port is configured as https not http. Failure is on protocol level not on code level. |
9687e04
to
0b41950
Compare
0b41950
to
57f5a99
Compare
@P1514 , my research shows that you can have two concurrent express apps running at the same time so the solution seems to be to have two apps listening on both ports. I've made the appropriate changes. Can you give it another shot, please? |
It looks like you’re now opening port 80. I don‘t think this will work if you’re running on a machine that’s already listening on port 80 for something unrelated, and with a container, only port 5006 would continue to be exposed. Additionally, |
@j-f1 , if you have something else listening on port 80, like Nginx, you should redirect or reverse proxy using the web server. You can't expect this application to handle that redirect for you. Closing this PR as it is no longer necessary. |
Thanks for giving this fix a shot! |
This is to fix issue #203.