I have multiple node.js
apps running on my computer, and things are getting pretty confusing since the only difference between accessing them is the port number.
So I had the idea to use zeroconf to advertise them. I can now see my different apps in zeroconf capable browsers (Safari).
This is a great start, but not everybody on my team can use Safari, and so I'd like them to be accessible without port number.
So I'm looking for a way, to create redirects, or VirtualHost configs, based on zeroconf services.
For example: if I have a zeroconf service called fileserver
on machine some-server.local:3377
, I'd like it to be accessible through http://fileserver.services.local
, without port number.
Ideally it wouldn't redirect to http://some-server.local:3377
, that's why I was thinking about VirtualHosts.
Is this feasible?