Raspberry Pi에 웹 서버를 넣고 PHP를 실행하십시오.
2429 단어 RaspberryPinginxPHPRaspberrypi3
소개
Raspberry Pi에 웹 서버를 넣고 php를 이동하는 절차를 간략하게 요약합니다.
덧붙여 Raspberry Pi로 Web 서버를 움직일 경우는, Apache보다 경량인 nginx가 추천이므로 nginx로 움직입니다.
소요시간: 10분
환경: Raspbian GNU/Linux 9.3 (stretch)
nginx 설치
$ sudo apt-get install nginx
$ sudo /etc/init.d/nginx start
nignx 시작 후 브라우저에 Raspberry Pi의 IP 주소를 넣고 액세스하면 테스트 페이지가 표시됩니다.
php 설치
$ sudo apt-get install php7.0-fpm
$ sudo vi /etc/nginx/sites-available/default
# 44行目に「index.php」を追加
43 # Add index.php to the list if you are using PHP
44 index index.html index.htm index.nginx-debian.html index.php;
〜省略
# 56、57、60、63行目のコメントアウトを外す
56 location ~ \.php$ {
57 include snippets/fastcgi-php.conf;
58
59 # # With php-fpm (or other unix sockets):
60 fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
61 # # With php-cgi (or other tcp sockets):
62 # fastcgi_pass 127.0.0.1:9000;
63 }
$ sudo vi /etc/php/7.0/fpm/php.ini
# 760行目の「;cgi.fix_pathinfo=1」をデフォルトから変更
760 cgi.fix_pathinfo=0
동작 확인
$ sudo /etc/init.d/php7.0-fpm restart
$ sudo /etc/init.d/nginx restart
문서 루트에 test용 php 파일 만들기 및 액세스
$ sudo vi /var/www/html/test.php
test.php의 내용
<?php
phpinfo();
?>
php의 상태 화면이 표시되면 OK입니다.
Reference
이 문제에 관하여(Raspberry Pi에 웹 서버를 넣고 PHP를 실행하십시오.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Brutus/items/27525deedb0eea1b35b8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)