如何在根文件夹上执行NGINX故障转移



我的nginx进程请求来自/www ,该请求是通过NFS安装的。

i也有/www2 ,它也是NFS,但从另一台(备份)服务器上安装。它具有与/www 的文件相同的文件。

如何使nginx自动使root Directory从/www /www2 if >/www2 如果/www 被打破了?

我尝试设置" root/'然后",然后" try_files/www/ethaniel $ uri/www2/ethaniel $ uri",但这无效。

这是我的配置:

server {
    listen 80;
    server_name .ethaniel.com;
    root /www/ethaniel;
    location / {
        index  index.php;
        autoindex off;
    }
    location ~* ^.+.(php)$ {
        include /etc/nginx/fastcgi.conf.include;
    }
}

不可能通过Nginx配置进行脚本。

#!/bin/sh
#check nfs mount status
df -P -T /storage-pool/nfs-1 | tail -n +2 | awk '{print $2}' | grep nfs | wc -l > /root/status/nfs-1
df -P -T /storage-pool/nfs-2 | tail -n +2 | awk '{print $2}' | grep nfs | wc -l > /root/status/nfs-2
#give time to fetch nfs content
sleep 5
CHECK_FILE_1=`cat /root/status/nfs-1`
CHECK_FILE_2=`cat /root/status/nfs-2`
CHECK_NGINX_1=`grep 'nfs-1' /etc/nginx/sites-enabled/default.conf | wc -l`
CHECK_NGINX_2=`grep 'nfs-2' /etc/nginx/sites-enabled/default.conf | wc -l`
if [ $CHECK_FILE_1 -ne 1 ] && [ $CHECK_NGINX_1 -eq 1 ] && [ $CHECK_FILE_2 -eq 1 ]
    then
    sed -i 's/nfs-1/nfs-2/g' /etc/nginx/sites-enabled/default.conf
        nginx -t && echo 'move to nfs-2'
        nginx -s reload
elif [ $CHECK_FILE_2 -ne 1 ] && [ $CHECK_NGINX_2 -eq 1 ] && [ $CHECK_FILE_1 -eq 1 ]
    then
    sed -i 's/nfs-2/nfs-1/g' /etc/nginx/sites-enabled/default.conf
        nginx -t && echo 'move to nfs-1'
        nginx -s reload
elif [ $CHECK_FILE_1 -ne 1 ] && [ $CHECK_FILE_2 -ne 1 ]
        then
        echo 'All nfs-server down'
else
    echo 'OK'
fi

确保您更改匹配环境的路径。

相关内容

  • 没有找到相关文章

最新更新