我的nginx中有多个站点配置,当我重新启动计算机时,如果无法访问其中一个站点的上游,则nginx将根本无法启动,并且那些正常的站点也将无法启动,如何让Nginx会忽略那些无效的网站吗?
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
##
# nginx-naxsi config
##
# Uncomment it if you installed nginx-naxsi
##
#include /etc/nginx/naxsi_core.rules;
##
# nginx-passenger config
##
# Uncomment it if you installed nginx-passenger
##
#passenger_root /usr;
#passenger_ruby /usr/bin/ruby;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
并且启用了sites / example1的是
upstream example1 {
server example1.service.example.com;
}
server {
listen 80;
server_name example1.com;
location / {
proxy_pass http://example1/;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
并且启用了sites / example2的是
upstream example2 {
server example2.service.example.com;
}
server {
listen 80;
server_name example2.com;
location / {
proxy_pass http://example2/;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
当我重新启动计算机并且那时example2.service.example.com关闭时,nginx根本不会启动,即,即使example1.service.example.com可用,nginx也不会为example1服务
===== update“关闭”的解释:所有子域都在我自己的dns服务器上自动注册/注销,因此,如果服务器关闭,则dns在尝试解析该域名时将不会响应。
你能显示你的配置吗?
—
Tero Kilkanen 2015年
@TeroKilkanen添加了。
—
cgcgbcbc 2015年
@ AD7six是的,我的意思是上游无法解决,请参阅问题更新以获取更多详细信息
—
cgcgbcbc 2015年
我认为您不能强迫nginx从错误的配置开始。由于您控制DNS,因此可以使用简短的解析器缓存将其设置为使用nginx返回有效结果。
—
AD7six
@ AD7six是否可以在上游进行备份?我的意思是,如果我在上游添加了另一台主机(将始终可解析)作为备份,那么当正常的上游无法解析时,nginx是否会启动?
—
cgcgbcbc 2015年