国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 服務器 > Linux服務器 > 正文

linux(centos5.5)/windows下nginx開啟phpinfo模式功能的配置方法分享

2024-09-05 23:02:04
字體:
來源:轉載
供稿:網友

經過志文工作室測試有效的相關配置主要內容如下:

復制代碼 代碼如下:


location ~ /.php(.*)$ {
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+/.php)(.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO$fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
#includefastcgi_params;
include fcgi.conf;
}

一個完整的站點配置示例:

復制代碼 代碼如下:


log_format v.lzw.me '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
server {
listen80;
server_name v.lzw.me;
index index.html index.htm index.php default.html default.htm default.php;
root /www/v.lzw.me;

# urlrewrite
include v.lzw.me.conf;

location ~ /.php(.*)$ {
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+/.php)(.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO$fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
#includefastcgi_params;
include fcgi.conf;
}

location ~ .*/.(gif|jpg|jpeg|png|bmp|swf)$ {
expires 30d;
}

location ~ .*/.(js|css)?$ {
expires 12h;
}

access_log /wwwlogs/v.lzw.me.log v.lzw.me;
}

其他方法參考(適合windows下的nginx等):

復制代碼 代碼如下:


location ~ /.php
{
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+?/.php)(/.+)$") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;
}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 诸暨市| 巧家县| 罗江县| 蒲城县| 易门县| 天门市| 常德市| 眉山市| 云林县| 简阳市| 西乡县| 色达县| 京山县| 壤塘县| 钦州市| 高青县| 武清区| 重庆市| 循化| 河池市| 安平县| 东莞市| 杭锦旗| 叙永县| 通渭县| 阳原县| 淳安县| 如皋市| 柳江县| 吉水县| 安丘市| 连州市| 温州市| 城固县| 濮阳县| 三江| 凤山县| 昂仁县| 万山特区| 涟水县| 平泉县|