Linux/windows의 nginx에서 phpinfo 모드 기능을 활성화하는 방법

WBOY
풀어 주다: 2023-05-29 09:36:17
앞으로
1396명이 탐색했습니다.

코드를 복사하세요 코드는 다음과 같습니다:

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;
#include fastcgi_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';
서버 {
listen 80;
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;

위치 ~ .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;
#include fastcgi _params;
include fcgi.conf;
}

위치 ~ .*.(gif| jpg|jpeg|png|bmp|swf)$ {
만료 30일;
}

위치 ~ .*.(js|css)?$ {
만료 12시간;
}

access_log / wwwlogs/v.lzw.me 로그 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;
}

위 내용은 Linux/windows의 nginx에서 phpinfo 모드 기능을 활성화하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:yisu.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!