kazeburo / Gazelle

Preforked Plack Handler for performance freaks
https://metacpan.org/release/Gazelle
Other
74 stars 19 forks source link

Doesn't support Unix Domain Sockets #14

Closed frioux closed 9 years ago

frioux commented 9 years ago

plackup --listen $HOME/test.sock -s Gazelle -a test.psgi actually ends up listening on 0.0.0.0:8080, instead of the socket.

kazeburo commented 9 years ago

You can listen unix domain socket with start_server

e.g.

$ start_server --path /path/to/app.sock -- plackup -s Gazelle  -a app.psgi