มีการกำหนดค่าหลายไซต์ใน 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-enabled / 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-enabled / 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
===== อัปเดตคำอธิบายของ "ไม่ทำงาน": โดเมนย่อยทั้งหมดจะลงทะเบียนโดยอัตโนมัติ / ลงทะเบียนกับเซิร์ฟเวอร์ DNS ของฉันเองดังนั้นหากเซิร์ฟเวอร์ไม่ทำงาน DNS จะไม่ตอบสนองโดเมนดังกล่าวเมื่อพยายามแก้ไข