Proxying Golang Web Applications

1 · Mike Perham · July 18, 2019, 12:16 a.m.
Recently someone posted an issue asking if Faktory could support putting nginx in front of Faktory's Web UI. Normally you access the Web UI like http://localhost:7420/ but they wanted it to look something like http://somehost:8080/faktory. That's quite common when trying to wrap multiple systems into something that looks like one website to the browser. The issue is that the Web UI assumed it was at the root, so it hardcoded paths like /static/application.css. If you mount the Web UI at /fakt...