Using snap-server's httpServe
method, I can setPort 0
to instruct the server to connect on the next free port. Unfortunately, once I have started the http server, I can't find any way to determine which port it actually started on. As an example, my first try started on port 2679 - is there any way to determine that number?
Find the port bound by snap-server
400 Views Asked by Neil Mitchell At
2
There are 2 best solutions below
1

The Config structure has a bunch of getters, no?
getPort :: Config m a -> Maybe Int
Returns the port to listen on (for http)
I wrote this patch, included with
snap-server
0.9 and above, using which you can write:Now
hook
will be called after the server is ready, and will print the port it started on.