美文网首页
Gitea无法导入本地git:You are not allow

Gitea无法导入本地git:You are not allow

作者: 简单点的笨演员 | 来源:发表于2021-05-13 16:17 被阅读0次

    本地有一份git管理的代码,想导入Gitea,在代码目录右键,选择TortoiseGit->Daemon开启临时git server。在Gitea导入git界面中,url填 git://127.0.0.1/,无法导入,提示下面的错误:

    You are not allowed to import from private IPs.
    

    解决版本如下:

    找到Gitea的配置文件app.ini


    app.ini的位置

    打开app.ini,在文件的最后加入下面的配置:

    [migrations]
    ALLOW_LOCALNETWORKS    = true
    ALLOWED_DOMAINS = 127.0.0.1,192.168.31.100
    

    重启Gitea即可。

    相关文章

      网友评论

          本文标题:Gitea无法导入本地git:You are not allow

          本文链接:https://www.haomeiwen.com/subject/bditjltx.html