문제

What is the difference between nginx and xinetd ?

When should I prefer nginx, and when should I prefer xinetd?

Maybe I'm wrong, but I got the impressions they are both proxies. I got that nginx does a lot more, but - is there anything xinetd does better?

도움이 되었습니까?

해결책

Nginx is primarily for serving and proxying HTTP request.

Xinetd does neither of things of things. Instead, it is a "super server" that listens for network connections, and launches launches the appropriate service for that request. One use of xinetd would be conserve memory for services that are not access frequently. For example, sometimes people access 'sshd' through xinetd, instead of running 'sshd' continuously.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top