1. 安装nginx

sudo apt-get install nginx

2. 安装PHP

sudo apt-get install php-fpm php-sqlite3 php-mbstring

3. 简单配置nginx

编辑/etc/nginx/sites-enabled/default文件:

  • 这里增加index.php类型:
    # Add index.php to the list if you are using PHP
    index index.html index.htm index.nginx-debian.html index.php;
  • 打开PHP的解析:
    # pass PHP scripts to FastCGI server
    #
    location ~ \.php(\/.*)*$ {
            include snippets/fastcgi-php.conf;

            # With php-fpm (or other unix sockets):
            fastcgi_pass unix:/var/run/php/php-fpm.sock;
            # With php-cgi (or other tcp sockets):
            #fastcgi_pass 127.0.0.1:9000;
    }
  • 注意: location那里不能用默认的写法,否则某些页面会打不开.

4. 安装typecho

  • 下载当前的稳定发行版:
wget https://github.com/typecho/typecho/releases/latest/download/typecho.zip
  • 解压并复制到/var/www/html:
cd /var/www/html
unzip typecho.zip
  • 修改权限. nginx和php-fpm默认都是www-data用户, 所以必须修改/var/www/html目录的用户为www-data. 否则typecho无法创建文件.
chown www-data:www-data /var/www/html -R

5. 安装完成!

现在, 可以输入你的服务器地址, typecho的页面会提示你一步一步安装的.

标签: none

已有 9 条评论

  1. 《搏击谷》动作片高清在线免费观看:https://www.jgz518.com/xingkong/94882.html

  2. 《一起火锅吧第四季》大陆综艺高清在线免费观看:https://www.jgz518.com/xingkong/23778.html

  3. 你的才华横溢,让人敬佩。 https://www.4006400989.com/qyvideo/69472.html

  4. 作者以非凡的视角解读平凡,让文字焕发出别样的光彩。

  5. 文字如刀,剖开表象直抵本质。

  6. 每个标点都承载着思考的重量。

  7. 建议后续持续追踪此话题,形成系列研究。

  8. 字里行间流露出真挚的情感,让人感同身受,共鸣不已。

  9. 作者的观点新颖且实用,让人在阅读中获得了新的思考和灵感。

添加新评论