Gogs安全INSTALL_LOCK参数

时间:2016-05-03 02:10:53

标签: git gogs

在gogs app.ini配置文件中,我看到有一个INSTALL_LOCK配置参数。这个参数是什么?

2 个答案:

答案 0 :(得分:1)

来自Gogs app.ini cheatsheet

public override void AdjustStock(StockQuantity quantity)
    {
        if (quantity is DiscreteStockQuantity)
        {
            var dq = quantity as DiscreteStockQuantity;
            _StoredStock = dq.Quantity;
        }
    }

因此,在第一次安装后,Gogs将此值设置为true,以防止在重新启动Gogs时再次打开打开的安装页面。如果您将其重置为false,则INSTALL_LOCK: Indicates whether to allow the open install page (setting admin account is involved, so it’s a very important value). 将重新打开您当前的设置。点击安装后,您的配置设置将会更新。

答案 1 :(得分:1)

来自 the docs (我在Google上搜索您的标题,“Gogs Security INSTALL_LOCK参数”):

  

open install page:表示是否允许打开安装页面(涉及设置管理员帐户,因此这是一个非常重要的值)。