ทำให้ nginx เพิกเฉยการกำหนดค่าไซต์เมื่อไม่สามารถเข้าถึงอัปสตรีมได้


12

มีการกำหนดค่าหลายไซต์ใน 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 จะไม่ตอบสนองโดเมนดังกล่าวเมื่อพยายามแก้ไข


คุณสามารถแสดงการกำหนดค่าของคุณได้ไหม
Tero Kilkanen

@TeroKilkanen เพิ่ม
cgcgbcbc

@ AD7six ใช่ฉันหมายถึงอัปสตรีมไม่สามารถแก้ไขได้โปรดดูการอัปเดตคำถามเพื่อรับรายละเอียดเพิ่มเติม
cgcgbcbc

ฉันไม่คิดว่าคุณสามารถบังคับให้ nginx เริ่มต้นด้วยสิ่งที่เดือดลงไปสู่การปรับแต่งที่ไม่ดี เนื่องจากคุณสามารถควบคุม DNS ได้อาจตั้งค่าให้ส่งคืนผลลัพธ์ที่ถูกต้องด้วย nginx โดยใช้แคชตัวแก้ปัญหาแบบสั้น
AD7six

@ AD7six จะสำรองข้อมูลในการทำงานต้นน้ำหรือไม่ ฉันหมายถึงถ้าฉันเพิ่มโฮสต์อื่น (ซึ่งจะแก้ไขได้เสมอ) ในอัพสตรีมเป็นแบ็คอัพ nginx จะเริ่มทำงานเมื่ออัพสตรีมปกติไม่สามารถแก้ไขได้หรือไม่
cgcgbcbc

คำตอบ:


15

ในที่สุดฉันก็พบคำตอบแก้ไขปัญหาตำแหน่ง insdie ของโดเมน!

ตัวอย่าง:

server {
    listen 9000;
    server_name example1.example.com;
    location / {
        set $target http://something.service.lab.mu;
        proxy_pass http://$target;
    }
}

และ nginx จะไม่พยายามแก้ไขhttp://something.service.lab.muณ เวลาเริ่มต้น


1
ไม่ได้ผลสำหรับฉัน เมื่อทำเช่นproxy_pass $target;นั้นฉันจะได้รับ "502 Bad Gateway" proxy_pass http://$targetให้ฉัน "500 Internal Server Error" นั่นคือเมื่อ Nginx สามารถแก้ไขโฮสต์ได้
kba

3
ด้วยการเพิ่มของ @ EmilBurzo งานนี้
kba

13

สำหรับทุกคนที่สะดุดกับปัญหานี้ @cgcgbcbc ถูกต้อง

แต่คุณต้องเพิ่ม

resolver 8.8.8.8;

คำสั่งข้างต้น

set $target http://something.service.lab.mu;

มิฉะนั้นคุณจะได้รับข้อผิดพลาดใน nginx เช่น:

no resolver defined to resolve
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.