冰法冰粉博客CSS修复typecho及APP内测版

建议环境: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。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值