반응형
https://github.com/SSilence/selfoss.wiki.git

The Raspberry Pi is a great device for running simple web services as it uses only a few watts of electricity and can be kept running all the time. Selfoss performs very well on the device due to Selfoss's efficient code, unlike Tiny Tiny RSS which doesn't run fast enough on the Pi. I've compared performance running Selfoss on the Pi to a free web hosting service and the performance was near identical.

Installation

Install the following:

sudo apt-get install lighttpd php5 php5-cgi php5-cli php5-sqlite php5-gd

Configure lighttpd

sudo /usr/sbin/lighttpd-enable-mod fastcgi fastcgi-php

unzip (as root) selfoss into /var/www so the directory is /var/www/selfoss

sudo chown -R www-data:www-date /var/www/selfoss/

Edit "/etc/lighttpd/lighttpd.conf": in server.modules uncomment "mod_rewrite"

Add the following:

"^/selfoss/favicon.ico$" => "/selfoss/public/favicon.ico",
 "^/selfoss/favicons/(.*)$" => "/selfoss/data/favicons/$1",
 "^/selfoss/thumbnails/(.*)$" => "/selfoss/data/thumbnails/$1",
 "^/selfoss/(.*.(js|ico|gif|jpg|png|css|asc|txt|eot|woff|ttf|svg))$" => "/selfoss/public/$1",
 "^/selfoss/index.php(.*)$" => "$0",
 "^/selfoss/([^\?]*)(\?(.*))?" => "/selfoss/index.php?$3",
 "^/selfoss/public/" => "$0",
 "^/selfoss/(.*)" => "/selfoss/index.php$1"
)
Edit /etc/php5/cgi/php.ini: max_execution_time = 60

cd /var/www/selfoss/

Edit .htaccess uncomment "RewriteBase /selfoss"

Copy default.ini to config.ini Edit config.ini: auto_mark_as_read=1

Add the update to the root crontab: sudo crontab -e

Then add the following:

*/35 6-23 * * * su - www-data -c "/usr/bin/php /var/www/selfoss/update.php" >>/tmp/selfoss_update.log 2>&1

Restart lighttpd: sudo service lighttpd restart

Open selfoss in your web browser by going to http://{hostipaddress}/selfoss The first run may give a timeout error whilst it sets up the environment. From then on it should work fine.


'OS' 카테고리의 다른 글

[Linux] 폴더 유저 권한 변경  (0) 2013.07.29
[ubuntu] root 계정 비밀번호 부여하기  (0) 2013.07.09
[Ubuntu] 종료, 재시작 명령어  (0) 2013.06.29
mswinsck.ocx 오류 발생시  (0) 2013.03.04
mscomctl.ocx 오류 발생시  (0) 2013.03.04
반응형

종료(루트권한)

$shutdown -h now



재부팅(루트권한)

$reboot

'OS' 카테고리의 다른 글

[ubuntu] root 계정 비밀번호 부여하기  (0) 2013.07.09
[raspberry pi] lighttpd, php 설치  (0) 2013.07.03
mswinsck.ocx 오류 발생시  (0) 2013.03.04
mscomctl.ocx 오류 발생시  (0) 2013.03.04
msinet.ocx 오류 발생시  (0) 2013.03.04
반응형

게임이나 기타 프로그램을 실행시 mswinsck.ocx 오류 발생시 아래 파일을 다운받아서 게임이 설치된 디렉토리나 시스템 폴더에 mswinsck.ocx파일을 넣어주면 된다.


mswinsck.ocx


32비트 OS 일경우 C:\Windows\System32

64비트 OS 일경우 C:\Windows\SysWOW64


'OS' 카테고리의 다른 글

[raspberry pi] lighttpd, php 설치  (0) 2013.07.03
[Ubuntu] 종료, 재시작 명령어  (0) 2013.06.29
mscomctl.ocx 오류 발생시  (0) 2013.03.04
msinet.ocx 오류 발생시  (0) 2013.03.04
comdlg32.ocx 오류 발생시  (0) 2013.03.04
반응형

게임이나 기타 프로그램을 실행시 mscomctl.ocx 오류 발생시 아래 파일을 다운받아서 게임이 설치된 디렉토리나 시스템 폴더에 mscomctl.ocx파일을 넣어주면 된다.

MSCOMCTL.ocx



32비트 OS 일경우 C:\Windows\System32

64비트 OS 일경우 C:\Windows\SysWOW64


'OS' 카테고리의 다른 글

[Ubuntu] 종료, 재시작 명령어  (0) 2013.06.29
mswinsck.ocx 오류 발생시  (0) 2013.03.04
msinet.ocx 오류 발생시  (0) 2013.03.04
comdlg32.ocx 오류 발생시  (0) 2013.03.04
Windows 7에서 자동 로그인 설정하기  (0) 2013.03.01
반응형

게임이나 기타 프로그램을 실행시 msinet.ocx 오류 발생시 아래 파일을 다운받아서 게임이 설치된 디렉토리나 시스템 폴더에 ocx 파일을 넣어주면 된다.

msinet.ocx



32비트 OS 일경우 C:\Windows\System32

64비트 OS 일경우 C:\Windows\SysWOW64


'OS' 카테고리의 다른 글

mswinsck.ocx 오류 발생시  (0) 2013.03.04
mscomctl.ocx 오류 발생시  (0) 2013.03.04
comdlg32.ocx 오류 발생시  (0) 2013.03.04
Windows 7에서 자동 로그인 설정하기  (0) 2013.03.01
xlive.dll 오류 뜰때  (0) 2013.02.15
반응형

게임이나 기타 프로그램을 실행시 comdlg32.ocx 오류 발생시 아래 파일을 다운받아서 게임이 설치된 디렉토리나 시스템 폴더에 ocx파일을 넣어주면 된다.

comdlg32.ocx



32비트 OS 일경우 C:\Windows\System32

64비트 OS 일경우 C:\Windows\SysWOW64


+ Recent posts