-
-
Save boneskull/d418b7c871d2248cfeba to your computer and use it in GitHub Desktop.
server { | |
listen 80; | |
server_name your_server_name; | |
access_log /var/log/nginx/access.log; | |
location / { | |
proxy_pass http://localhost:1880; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
} | |
} |
thanks!
Just what I needed
thanks!... you are awesome !
I configured the default sites-enabled as you shown above. The result is like in the image at the link https://ibb.co/bzfmCe .
Could you suggest anything?
THX!!!
Great Job
It works! Thank you!
Is it possible to pass just the UI and block the flows(admin page)?
@barisduzenli no idea. might be a http/https disagreement
@marciomcj which UI do you mean?
@boneskull ui=dashboard. When I go to the browser I would like to see just dashboard's tabs...
@marciomcj Don't know, but you should be able to reverse proxy a particular subpath. you could try changing proxy_pass http://localhost:1880;
to proxy_pass http://localhost:1880/path/to/ui
;
@boneskull I have tried that. Now it's working how I expected! Thank you again!
@marciomcj I change to localhost:1880/ui but it show me an error not found /uiui
Thanks, works flawlessly!
That's great!
Was getting a 404 on
/comms
until I ran across this gist. Thank you 👍