저는 이전에 고객이 GeoIP2를 기반으로 자동화된 AB 스테이션을 구축하도록 도왔습니다(Nginx Geoip2는 다른 국가의 트래픽을 처리합니다(또는 도시) 액세스
) 고객님께서 최근 관리 터미널을 통해 AB 스테이션 전환을 수동으로 제어하고 싶어하셨습니다
include
Nginx vhost 구성 파일의 조각 구성 include
片段配置创建独立片段Nginx配置文件,例如PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf
,然后在nginx vhost
中include
PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf
root /www/wwwroot/ahost;
include
配置文件PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf
site.conf
server { listen 80; server_name 0.0.0.0; index index.html; include /www/wwwroot/abhost/PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf; }
PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf
if($data['site_set'] == AbHostSiteEnum::Ahost) { //开启A站 $ahostPath = AbHostSiteEnum::AhostPath; file_put_contents('./PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf',"root {$ahostPath};");}else { //开启B站 $bhostPath = AbHostSiteEnum::BhostPath; file_put_contents('./PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf',"root {$bhostPath};");}
30s内Nginx无法平滑退出,就强行关闭进程
nginx.conf
...worker_shutdown_timeout 30;
crontab -e
PHP 웹 측에서 Nginx 구성을 작동하는 방법와 같은 독립적인 조각 Nginx 구성 파일을 만듭니다. conf
를 선택한 다음 nginx vhost
에 포함🎜🎜PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf
🎜*/5 * * * * nginx -s reload
PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf
🎜🎜 사이트 구성 파일 site.conf
🎜rrreee🎜🎜🎜3. 백그라운드 로직 PHP 웹 측에서 Nginx 구성을 작동하는 방법.conf🎜rrreee🎜🎜🎜4. Nginx 전역 구성에서 Worker_shutdown_timeout🎜<blockquote>🎜30초를 설정합니다. Nginx가 원활하게 종료되지 않아 프로세스가 강제 종료됩니다🎜</blockquote>🎜<code>nginx.conf
🎜rrreee🎜🎜🎜5. 정기적으로 Nginx 핫 리스타트를 수행하세요🎜🎜crontab -e
🎜rrreee🎜추천 튜토리얼: "🎜PHP🎜"🎜위 내용은 PHP 웹 측에서 Nginx 구성을 작동하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!