首頁 > 後端開發 > php教程 > 配置nginx支援php

配置nginx支援php

不言
發布: 2023-03-25 13:14:02
原創
1513 人瀏覽過

這篇文章主要介紹了關於配置nginx支援php,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

 server {
        listen       80;
        server_name  localhost;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        location / {
            root   html;
            index 
 index.php
 index.html index.htm;
        }
        #error_page  404              /404.html;
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
     
   location ~ \.php$ {
                root           html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include        fastcgi_params;
        }
登入後複製

必須將程式碼寫在server內

儲存重啟nginx

重啟php service php-fpm restart

#相關推薦:

##設定nginx php mysql 自動啟動

以上是配置nginx支援php的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板