之前幫客戶整了一套基於GeoIP2的自動化AB站(Nginx Geoip2 處理不同國家 (或城市) 的存取
),客戶最近想通過管理端手動控制AB站切換
include
片段設定建立獨立片段Nginx組態檔,例如ar414.conf
,然後在nginx vhost
中include
ar414.conf
root /www/wwwroot/ahost;
include
組態檔ar414.conf
site.conf
server { listen 80; server_name 0.0.0.0; index index.html; include /www/wwwroot/abhost/ar414.conf; }
ar414.conf
if($data['site_set'] == AbHostSiteEnum::Ahost) { //開啟A站 $ahostPath = AbHostSiteEnum::AhostPath; file_put_contents('./ar414.conf',"root {$ahostPath};");}else { //開啟B站 $bhostPath = AbHostSiteEnum::BhostPath; file_put_contents('./ar414.conf',"root {$bhostPath};");}
30s內Nginx無法平滑退出,就強行關閉進程
nginx.conf
...worker_shutdown_timeout 30;
crontab -e
*/5 * * * * nginx -s reload以上就是PHP Web 端如何操作 Nginx 設定的詳細內容,更多請關注TW511.COM其它相關文章!