Nginx fails to start if one of the "proxy_pass" sites is not up or not resolving anymore, therefore bringing dow ALL of the other sites. How can I make it not care if one of the sites is down.
nginx.conf looks like this:
include /etc/nginx/modules-enabled/*.conf;
stream {
server {
listen 80;
proxy_pass insertwebsitehere.com
}
}
events{}