skip to Main Content

Php versions – Can I achieve zero-downtime deployment by modifying the Nginx configuration file?

I have a PHP project, and the Nginx configuration before releasing a new version is: location ~ .php$ { root /data/web/php-project-v1.0.0; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_NAME $fastcgi_script_name; } The server is still handling a…

VIEW QUESTION
Back To Top
Search