win php nginx 配置小細節

來源:互聯網
上載者:User

標籤:pathinfo   oca   php nginx   nginx   art   ima   md5   ica   fastcgi   

win下配置php Nginx


首先 下載 php-Windows版本、下載Nginx Windows 版本

1> php.ini-production 修改為 php.ini 讓其成為php的設定檔

修改 php.ini 771行 cgi.fix_pathinfo=1 開啟

2>修改 nginx/conf/nginx.conf

這個設定檔是分層的 如 http server 等

我們要修改的是 server 層 ,層級之間有一個繼承關係, 內層繼承外層, 同級層配置互不干擾,也就是說

http 層下面可能有 很多個 server 層


http{

#普通http配置
server{
location / {
root E:/nginx-1.11.7/html; #這裡是網站的根目錄
index index.php index.html index.htm; #入口
}

location ~ \.php$ {
root E:/nginx-1.11.7/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}


# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;

# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;

# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;

# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;

# location / {
# root html;
# index index.html index.htm;
# }
#}


}

修改完配置之後

啟動Nginx:start nginx
快速停止或關閉Nginx:nginx -s stop
正常停止或關閉Nginx:nginx -s quit
設定檔修改重裝載命令:nginx -s reload


tasklist /fi "imagename eq nginx.exe" 查看nginx是否啟動成功

 

啟動php-cgi

start e:/php-5.6.29/php-cgi.exe -b 127.0.0.1:9000 -c e:/php-5.6.29/php.ini


就可以測試 Nginx環境是否可以解析php程式了 ok沒問題就配置成功了

win php nginx 配置小細節

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.