前言
手头的树莓派4B跑了跑人脸识别以后就一直在吃灰。最近想起来以前看到一款很不错的叫Typecho 的轻量级博客程序,简洁美观,拓展性强。正好可以把闲置的树莓派算力利用起来。
目录
概要
硬件环境
- 服务器:树莓派4B 烧录RaspberryPi OS
- 储存卡:16GB SanDisk 高速卡
- 外壳:九层亚克力板外壳+散热小风扇
- 网络环境:校园网 有固定内网IP但无公网IP
开始搭建
SQLite3
安装: 命令行输入sudo apt-get install sqlite3 启动: 命令行输入sudo service sqlite3 start
PHP7.3及拓展库
安装: 命令行输入sudo apt-get install php7.3-fpm php7.3-mbstring php7.3-curl php7.3-xml php7.3-xmlrpc php7.3-zip php7.3-common
其中php7.3-mbstring 和php7.3-curl 是Typecho 博客程序所必需的扩展库。
启动: 命令行输入sudo service php7.3-fpm start
Nginx
安装: 命令行输入sudo apt-get install nginx 启动: 命令行输入sudo service nginx start 配置: 1.命令行输入sudo nano /etc/nginx/sites-available/default 2.将以下内容 index index.html index.htm index.php index.nginx-debian.html; 改为 index index.html index.htm index.php index.nginx-debian.html;
3.将以下内容
#location ~ \.php$ {
# include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
# fastcgi_pass unix:/run/php/php7.3-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
#}
改为
location ~ ^.+.php {
# include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^((?U).+.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
4.命令行输入sudo service nginx restart
检验: 如果使用的是树莓派的图形界面,可以用树莓派自带浏览器输入localhost访问;如果不是,可以用同一局域网下的其它设备直接访问树莓派的IP。若Nginx安装成功,则访问页面出现Welcome to Nginx! 字样。
Typecho
安装: 1.前往 http://typecho.org/download 下载博客程序并将博客程序压缩包内的build文件夹下的文件解压存放到/var/www/html 下。 2.命令行输入cd /var/www/html 再输入sudo chown -R www-data:www-data ./ 将目录所有者更改为www-data;再输入sudo find ./ -type d -exec chmod 755 {} \; 将该目录下所有文件夹权限改为755;最后输入sudo find ./ -type f -exec chmod 644 {} \; 将该目录下所有文件权限改为644; 3.打开树莓派上的浏览器访问localhost或使用其他电脑访问树莓派的局域网地址进入Typecho安装程序,填写信息后安装成功。 问题:
访问后台时出现404 命令行输入sudo nano /etc/nginx/sites-available/default 仔细检查Nginx配置文件是否与上述配置一致,特别是location ~ ^.+.php { 这里。
原文地址:https://ranlychan.top/archives/219.html
|