라즈베리파이 lighttpd + mysql + php 환경 설정

라즈베리파이에 lighttpd + mysql + php를 설치하여 저전력 웹 서버로 활용할 수 있다. 필요한 패키지들을 다음과 같이 설치한다.

pi@raspbmc:~$ sudo apt-get install lighttpd mysql-server php5 php-common php5-cgi php5-mysql lighty-enable-mod fastcgi-php
pi@raspbmc:~$ sudo service lighttpd force-reload

설치만 하면 부팅할 때마다 자동으로 lighttpd daemon이 실행된다. 기본적으로 80 포트를 사용하게 되어있지만 xbmc가 이미 사용하고 있으므로 포트를 변경해줘야 한다. 그리고 관리의 편의를 위해서 홈디렉토리 밑에 HTTP 루트 디렉토리를 설정한다.  서비스 포트, 홈디렉토리 변경, 로그 디렉토리 변경 그리고 dir-listing이 가능하도록 설정하였다.

pi@raspbmc:~$ cat /etc/lighttpd/lighttpd.conf 
server.modules = (
	"mod_access",
	"mod_alias",
	"mod_compress",
 	"mod_redirect",
#       "mod_rewrite",
)

server.document-root        = "/home/pi/www"
server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
server.errorlog             = "/var/log/error.log"
server.pid-file             = "/var/run/lighttpd.pid"
server.username             = "www-data"
server.groupname            = "www-data"
server.port                 = 8080

index-file.names            = ( "index.php", "index.html", "index.lighttpd.html" )
url.access-deny             = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )

compress.cache-dir          = "/var/cache/lighttpd/compress/"
compress.filetype           = ( "application/javascript", "text/css", "text/html", "text/plain" )

# default listening port for IPv6 falls back to the IPv4 port
include_shell "/usr/share/lighttpd/use-ipv6.pl " + server.port
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"

# cky
dir-listing.activate        = "enable"
dir-listing.show-readme     = "enable"
dir-listing.hide-readme-file = "enable"
dir-listing.encoding        = "utf-8"
dir-listing.hide-dotfiles   = "enable"

설정을 수정한 후 lighttpd를 실행하면 잘 동작하는 것을 확인할 수 있을 것이다. 🙂

ps. 외부에서 접속하려면 Raspbmc Settings에서 Firewall을 disable하여야 한다.

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다