建议环境:Debian(stretch)+nginx(1.10)+sqlite3
冰法冰粉博客,由轻量高效的PHP程序Typecho搭建,Typecho在 GPL version 2 许可证下发行,支持多种数据库(Mysql, PostgreSQL, SQLite)。博客地址:http://blog.bingfen.com.cn 上线之初,做了较多的程序优化和CSS样式修复。记录一下
1、修改apache配置
打开apache的配置文件:/usr/local/apache/conf/httpd.conf
搜索 LoadModule proxy_module modules/mod_proxy.so 把前面的 # 号去掉
搜索 Include conf/extra/httpd-vhosts.conf 把前面的 # 号去掉
搜索 ProxyPassMatch 在下面添加一行
ProxyPassMatch ^/(.*\.php(/.*)?)$ unix:/home/www/logs/php-fpm.sock|fcgi://127.0.0.1/home/www/htdocs/blog
保存然后关闭。
打开 /usr/local/apache/conf/extra/httpd-vhosts.conf
修改映射。没域名的同学只改 DocumentRoot (博客路径) 参数就可以了
保存然后关闭。
接下来重启apache
/usr/local/apache/bin/apachectl restart
3、执行 Typecho 安装程序
上面apache配置正确的话,在浏览器输入 http://ip/install.php 或者 http://域名/install.php 就能访问到安装程序了。
4、访问
前台页面地址:输入IP或者域名就可以访问了,例如我的:http://blog.bingfen.com.cn
5、nginx可能需要配置
修改/etc/nginx/sites-available下的default文件:
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
# location ~ \.php$ {
location ~ .*\.php(\/.*)*$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
完成以上设置后重启nginx。