tomaka / rouille

Web framework in Rust
Apache License 2.0
1.09k stars 105 forks source link

Unix Domain? #227

Open cheako opened 4 years ago

cheako commented 4 years ago

Handling requests from an upstream server, or tor, is a must! If the upstream server is local it becomes encumbering to use ports on a localhost interface for IPC. Enter Unix Domain Sockets.

Cerber-Ursi commented 4 years ago

If I understand correctly, the request might be better forwarded to the underlying HTTP implementation, i.e. https://github.com/tiny-http/tiny-http. Doesn't have the time to formulate it properly right now, though.

cheako commented 4 years ago

Sorry. This would be an extension on the listening socket, to allow for accepting connections on UDS.

mpalmer commented 3 months ago

PR #287 may be of interest.