이 글은 주로 PHP를 지원하기 위한 nginx의 구성을 소개합니다. 이제 모든 사람과 공유합니다. 필요한 친구들이 참고할 수 있습니다
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; }
코드는 서버에 작성해야 합니다
nginx를 저장하고 다시 시작하세요.
PHP 서비스 다시 시작 php-fpm restart
관련 권장 사항:
nginx php mysql이 자동으로 시작되도록 구성
위 내용은 PHP를 지원하도록 nginx 구성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!