Linux에서 nginx php를 설치하는 방법: 먼저 "yum install nginx" 명령을 통해 nginx를 설치한 다음 "yum install php php-fpm" 명령을 실행하여 PHP를 설치하고 마지막으로 PHP FPM이 php와 작동하도록 구성합니다.
추천: "PHP 비디오 튜토리얼"
Installing nginx and php under linux
저는 centos 서버입니다. 저는 nginx 서버를 구성하고 php 실행 환경 javascript를 구축하는 방법을 가르쳐 드리겠습니다. void(null )
1.ngnix 설치
yum install nginx
설치가 완료된 후 nginx를 시작하고 브라우저에서 접속하여 nginx가 성공적으로 설치되었는지 확인할 수 있습니다. 포트의 기본값은 80입니다.
systemctl start nginx
nginx에서 yum 설치를 위한 기본 웹사이트 루트 디렉토리는 /usr/share/nginx/html입니다.
작업이 성공하면 환영 인터페이스가 나타나며, 이는 nginx가 성공적으로 설치되었음을 나타냅니다.
2. PHP-FPM
yum install php php-fpm
php-fpm을 시작하세요
systemctl start php-fpm
3. PHP를 mysql 모듈과 연결하세요
여기에 mariadb 데이터베이스가 있습니다
설치
yum install mariadh mariadb-server
Association
yum install php-gd php-mysql php-mbstring php-xml php-mcrypt php-imap php-odbc php-pear php -xmlrpc
4.
nginx 기본 구성 문서를 엽니다.
vim /etc/nginx/nginx.conf
http 모듈에 구성 추가:
location / { root /usr/share/nginx/html; index index.html index.htm index.php; } 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 기본 fastcgiparams 구성 파일 변경: vim /etc/nginx/fastcgi_params 파일 끝에 두 줄 추가:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; FO $ fastcgi_script_name;
그런 다음 서비스를 다시 시작합니다.
service nginx restart service php-fpm restart
5. 실행
웹 사이트 루트 디렉터리에 index.php 파일을 만듭니다.
파일 내용은 다음과 같습니다.
<?php phpinfo(); ?>
nginx의 yum 설치 위치는 /usr/share/nginx/html
이 폴더에 새 파일을 생성하세요
일반적인 상황에서는 PHP 파일을 실행하고 액세스할 수 있습니다.
위 내용은 리눅스에 nginx php 설치의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!