ubuntu14.04 +nginx+php5-fpm

2371 단어 ubuntu
1. Nginx 설치
  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 를 입력 하면 볼 수 있 습 니 다.

좋은 웹페이지 즐겨찾기