日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

php nginx配置范例,nginx配置文件范文

發布時間:2025/4/5 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php nginx配置范例,nginx配置文件范文 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1、一般nginx安裝完之后便是配置文件了,主配置文件nginx.conf 就修改2個地方

listen ? ? ?80; ? ? ? ? #監聽端口

server_name www.boke.com;? ? ? ?#虛擬主機域名或者IP地址

2、每配置一個網站就在/etc/nginx/conf.d/目錄下建立相關的配置文件如下內容

server {

listen ? ? ?80; ? ? ? ??#監聽端口

server_name www.boke.com;? ? ? ? ? ? ? ?#?虛擬主機域名或者IP地址

#autoindex ? on; ? ? ? ? ? ? ? ? ?#這個是開啟瀏覽網站的目錄顯示,建議關閉off

root ? ? ? ?/source/boke/public; ? ? ? ? ? ? 這個網站根目錄

index ? ? ? index.php index.html index.htm;

charset ? ? utf-8;

access_log /var/log/nginx/bp.hldcanyin.com.access.log main;

error_log ?/var/log/nginx/bp.hldcanyin.com.error.log debug;

location / {

#try_files $uri $uri/ /index.php?_url=$uri&$args;

try_files $uri $uri/ /index.php?$query_string;

}

location ~ \.php {

# try_files ? $uri =404;

fastcgi_pass ?127.0.0.1:9000;

fastcgi_index /index.php;

include fastcgi_params;

fastcgi_split_path_info ? ? ? ^(.+\.php)(/.+)$;

fastcgi_param PATH_INFO ? ? ? $fastcgi_path_info;

fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

}

location ~ /\.ht {

deny all;

}

}

以上有問題歡飲補充,這里只做簡單展示!謝謝!

總結

以上是生活随笔為你收集整理的php nginx配置范例,nginx配置文件范文的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。