-
Notifications
You must be signed in to change notification settings - Fork 38
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
Running fleet-ui behind Nginx - per unit operation doesn't work #17
Comments
It seems.. websocket issue.(not test yet) You should add websocket option to nginx. Or use socket.io library instead of websocket. |
@subicura thank you for the reference! I was testing websocket configuration but could not make it work. I disabled ELB SSL termination (just use plain TCP 443-> TCP->8083) and let Ngnix does the SSL termination. The basic function works like before, but when clicking on a unit to get status, I got no response. The same screenshot like above without websocket configuration. My Chrome browser does support websocket. The Chrome Dev Tool doesn't seem to show the ws connection upgrade hands-shaking. More thoughts? I will document once I get this working! Here is the nginx configuration:
|
Okay I got it working. This setup uses HTTPS which requires secure websocket protocol wss://. I made changes in controller/unit.js file. But this breaks the plain HTTP request for unit journal logs. Not sure what's the best solution. Maybe for dev environment, use ws://, for production, use wss://. Or make another configuration setting for it. You can close this issue. |
Patch code to support wss, i.e. allows websorcket over both http and https. See issue purpleworks#17.
Patch code to support wss, i.e. allows websorcket over both http and https. See issue #17.
I am trying to put Nginx before fleet-ui to protect the app. The first fleet dashboard renders fine, but when I click on a unit, the sub window doesn't show status and all buttons are inactive (un-clickable). Running it on port 3000 without the proxy works fine.
The flow is basically like this:
Client request -> ELB port 443 -> Nginx basic auth -> FleetUI port 3000.
Any ideas how to make this work?
The text was updated successfully, but these errors were encountered: