summaryrefslogtreecommitdiffstats
path: root/squid-digest-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'squid-digest-html.lsp')
-rw-r--r--squid-digest-html.lsp29
1 files changed, 29 insertions, 0 deletions
diff --git a/squid-digest-html.lsp b/squid-digest-html.lsp
new file mode 100644
index 0000000..2f13432
--- /dev/null
+++ b/squid-digest-html.lsp
@@ -0,0 +1,29 @@
+<?
+ local form = ...
+ local data = form.option
+ local service = form.service
+
+ local srv1fill = ""
+ local srv2fill = "disabled"
+ if service.status == "running" then
+ srv1fill = "disabled"
+ srv2fill = ""
+ end
+
+?>
+<h1>Web Proxy Configuration</h1>
+<p>
+<dt>
+ This panel allows you to edit the list of usernames allowed to access the internet through the squid web proxy.
+ This list is active only for digest authentication. If you are using NTLM authentication, all domain users are
+ allowed to use the web proxy.
+</dt>
+</p>
+
+<h2>User List</h2>
+<form action="" method="POST">
+<textarea name="userlist" style="width:100%;"><? io.write( service.config ) ?></textarea>
+
+<h3>Save Changes</h3>
+<dt>Save the contents of the box above</dt><dd><input class="submit" type="submit" name="cmd" value="save"></dd>
+</form>