summaryrefslogtreecommitdiffstats
path: root/squid-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'squid-model.lua')
-rw-r--r--squid-model.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/squid-model.lua b/squid-model.lua
index 525f034..2529e09 100644
--- a/squid-model.lua
+++ b/squid-model.lua
@@ -176,10 +176,10 @@ end
read_config = function()
local retval = {
- httpports = { type="list", value={}, label="HTTP Ports", descr="List of port, IP:port, or hostname:port entries that Squid will listen on" },
- accesslog = { type="boolean", value=false, label="Log Access" },
- diskcache = { type="boolean", value=false, label="Disk Cache" },
- authmethod = { type="multi", value={}, label="Authentication Methods", option={"negotiate", "ntlm", "digest", "basic"} },
+ httpports = { type="list", value={}, label="HTTP Ports", descr="List of port, IP:port, or hostname:port entries that Squid will listen on", seq=0 },
+ accesslog = { type="boolean", value=false, label="Log Access", seq=1 },
+ diskcache = { type="boolean", value=false, label="Disk Cache", seq=2 },
+ authmethod = { type="multi", value={}, label="Authentication Methods", option={"negotiate", "ntlm", "digest", "basic"}, seq=3 },
}
configcontent = configcontent or fs.read_file(squidconf) or ""