We have a central server on which we host the environments of all our developers. We have nginx running which proxies requests to uwsgi application servers.
We have now started using webpack and we will end up running webpack-dev-server per developer. What I want to do is make webpack-dev-server run on a unix socket (so that we are not eating up ports) and proxy all the requests to this webpack-dev-server via nginx.
I was looking at the webpack-dev-server code on github and noticed that it accepts only a host and port as options.
Has anyone tried doing this before?