PS输出 png 图

h1.png

在 X-Icon Editor 网站在线转换成 .ico

http://www.xiconeditor.com/

将 favicon.ico 图标传到网站根目录,改属性

chown -R www-data.www-data favicon.ico

更改配置

vi /etc/ssh/sshd_config

找到 Port 22 在下面添加Port xxxxx 字段

重启 SSH 服务

service ssh restart

使用新端口登陆,修改配置

vi /etc/ssh/sshd_config

禁用Port 22

重启 SSH 服务

service ssh restart

本博客最初建立在 Sentris 64M 内存 VPS 上,系统模板使用 Debian 8。

更新软件

apt-get update&&apt-get upgrade -y

安装三大金刚

apt-get install sqlite
apt-get install lighttpd
apt-get install php5-cgi php5-curl php5-gd php5-sqlite

配置 PHP.INI 文件

vi /etc/php5/cgi/php.ini

找到 cgi.fix_pathinfo=1,把前面的; 去掉。

设置 typecho 目录

mkdir /home/www

下载 Typecho 解压到 /home/www 目录。

chown -R www-data.www-data /home/www
cd /etc/lighttpd
vi lighttpd.conf
server.document-root="/home/www"

复制 fastcgi 相关文件

cd conf-enabled
cp ../conf-available/*fastcgi* .

配置fastcgi

lighty-enable-mod fastcgi

重启 Lighttpd

service lighttpd restart

打开主页设置网站。