在使用PHP和Nginx配合時,通常會使用PHP-FPM(FastCGI Process Manager)來處理PHP腳本。以下是配置Nginx和PHP-FPM的一般步驟:
sudo apt-get install php-fpm
配置PHP-FPM
編輯PHP-FPM配置文件,通常位于/etc/php/7.x/fpm/pool.d/www.conf
,根據您的需求配置參數,例如監聽的端口號、用戶權限等。
配置Nginx 在Nginx的配置文件中,添加一個新的server塊用于處理PHP請求。在此server塊中,添加如下配置:
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}
其中,fastcgi_pass
指定了PHP-FPM的socket文件路徑。
sudo systemctl restart nginx
sudo systemctl restart php7.2-fpm
現在,您的PHP應用程序應該能夠通過Nginx和PHP-FPM正常運行了。您可以根據需要進一步調整Nginx和PHP-FPM的配置,以優化性能和安全性。