Nginx on Raspbian

Nginx のインストール

# apt install nginx-full

# systemctl status nginx

php7.0 をインストール

  1. パッケージのインストール
  2. # apt install php php-fpm

  3. バージョンの確認
  4. $ php --version
    PHP 7.0.27-0+deb9u1 (cli) (built: Jan  5 2018 13:51:52) ( NTS )
    Copyright (c) 1997-2017 The PHP Group
    Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
        with Zend OPcache v7.0.27-0+deb9u1, Copyright (c) 1999-2017, by Zend Technologies
    	
# systemctl status php7.0-fpm

/etc/nginx/sites-available/default

        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
        #
                fastcgi_pass unix:/run/php/php7.0-fpm.sock;
        }
	
/etc/php/7.0/fpm/pool.d/www.conf に
listen = /run/php/php7.0-fpm.sock となっている。

# apt install fcgiwrap


戻る

Mar/21/2018