ubuntu14.04 +nginx+php5-fpm
2371 단어 ubuntu
apt-get install nginx
1, nginx 설정
nginx 모든 설정 은 /etc / nginx / nginx. conf 에서
nginx. conf 설정 에 포함 되 어 있 습 니 다.
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
이 두 설정 은 이 안의 설정 도 유효 합 니 다.
오류 로그 error_log /var/log/nginx/error.log;
여기 저희 가 설정 을... /etc / nginx / sites - available / default 중
수정 하 다. root /usr/share/nginx/html; 이것 은 웹 페이지 의 루트 디 렉 터 리 입 니 다. 기본적으로 index. html 페이지 가 있 습 니 다.
index index. html index. htm 을 index 로 변경 index.php index.html index.htm;
증가시키다
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
}
2. 파일 저장, 설정 적용 / etc / init. d / nginx reload
3, nginx 시작
/etc/init.d/nginx start
네, 있어 요. /usr / share / nginx / html 에서 새 index. php
phpinfo();
?>
2 설치 php
sudo apt-get install php5-fpm
sudo apt-get install php5-gd # Popular image manipulation library; used extensively by Wordpress and it's plugins.
sudo apt-get install php5-cli # Makes the php5 command available to the terminal for php5 scripting sudo apt-get install php5-curl # Allows curl (file downloading tool) to be called from PHP5 sudo apt-get install php5-mcrypt # Provides encryption algorithms to PHP scripts sudo apt-get install php5-mysql # Allows PHP5 scripts to talk to a MySQL Database sudo apt-get install php5-readline # Allows PHP5 scripts to use the readline function
php5
ps -waux | grep php5
php5
sudo service php5-fpm stop
sudo service php5-fpm start
sudo service php5-fpm restart
sudo service php5-fpm status
php5 /etc/php5/fpm/pool.d/www.conf
listen = /var/run/php5-fpm.sock
listen = 127.0.0.1:9000
phop 프로 세 스 를 다시 실행 하고 브 라 우 저 에 localhost 를 입력 하면 볼 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Ubuntu 22.04에 캐디 설치 - HostnExtra이 기사에서는 Ubuntu 22.04에 Caddy를 설치하는 방법을 설명합니다. 이 문서는 설치 프로세스를 안내하고 웹 사이트를 호스팅합니다. Caddy 웹 서버는 Go로 작성된 오픈 소스 웹 서버입니다. Ubunt...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.