搭建 Oneindex 获得 OneDrive 镜像

Linux
34 0

坑不算多,很简单。新建 microsoft 账号默认获得 5 GB 容量,邀请得 10 GB,总共得到 15 GB。

  1. 解析域名
  2. git 程序,权限

     git clone https://github.com/donwa/oneindex.git
     chown -R www:www *
     chmod 777 config cache
  3. 如果桥接域名失效,可以使用手动绑定:

    Youdomain.com/disk/?install&code=OAQABAAIAAACEfexXx
  4. Nginx 伪静态

    • 第一个:

      if (!-f $request_filename){
        set $rule_0 1$rule_0;
      }
      if (!-d $request_filename){
        set $rule_0 2$rule_0;
      }
      if ($rule_0 = "21"){
        rewrite ^/(.*)$ /index.php?/$1 last;
      }
    • 第二个:

       location / {
         try_files $uri $uri/ /index.php/$uri;
       }
  5. 定时清理缓存(10 分钟)

    */10 * * * * php /www/soft.leeyr.com/one.php cache:refresh
  6. Demo
    https://soft.leeyr.com
  7. Microsoft Azure 可以看到应用详细情况
    https://portal.azure.com/#home
更新 2018-10-09
评论 ( 0 )
私信
pic
code
pre