summaryrefslogtreecommitdiffstats
path: root/squid-basic-html.lsp
diff options
context:
space:
mode:
authorAndreas Brodmann <andreas.brodmann@gmail.com>2007-11-29 19:28:10 +0000
committerAndreas Brodmann <andreas.brodmann@gmail.com>2007-11-29 19:28:10 +0000
commit4bbff2d10dbd88bb8781ada7c6e0549b51032018 (patch)
treee8e14dfc6a303b2e230d589b4eaedb265d53a3ec /squid-basic-html.lsp
parentd778aa11d469fa8c415c471dfae92272da14d83b (diff)
downloadacf-squid-4bbff2d10dbd88bb8781ada7c6e0549b51032018.tar.bz2
acf-squid-4bbff2d10dbd88bb8781ada7c6e0549b51032018.tar.xz
/acf/squid: daily update on trunk
git-svn-id: svn://svn.alpinelinux.org/acf/squid/trunk@389 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'squid-basic-html.lsp')
-rw-r--r--squid-basic-html.lsp23
1 files changed, 7 insertions, 16 deletions
diff --git a/squid-basic-html.lsp b/squid-basic-html.lsp
index b56b9e6..692bd06 100644
--- a/squid-basic-html.lsp
+++ b/squid-basic-html.lsp
@@ -44,6 +44,7 @@ until you restart the service.<br><br>
<form action="" method="POST">
<h1>Configuration</h1>
+<? io.write("<pre style=\"color: #ff2020;\">" .. service.error .. "</pre><br>\n" ) ?>
<h2>Primary Listener service</h2>
These parameters define the interface and port that the web proxy uses to accept connections.<br><br>
@@ -64,7 +65,7 @@ It is safe to leave this at the default settings.<br><br>
<table>
<tr><td align="right"><b>filterip</b></td><td><input type="text" name="filterip" value="<? io.write( config.filterip.value ) ?>"</td></tr>
<tr><td align="right"><b>filterport</b></td><td><input type="text" name="filterport" value="<? io.write( config.filterport.value ) ?>"></td></tr>
-<tr><td align="right"><b>FilterRegex</b></td><td><input type="text" name="filterregex" value="<? io.write( config.filterregex.value ) ?>"></td></tr>
+<tr><td align="right"><b>FilterRegex</b></td><td><input type="text" name="filterregex" value="<? io.write( config.filterregex.value ) ?>" style="width:400px;"></td></tr>
</table><br>
<h2>Access Logs</h2>
@@ -80,18 +81,8 @@ This determines if the disk is used for caching. This can speed up web surfing w
but it requires a local hard disk.<br><br>
<table>
-<tr><td><input type="radio" name="diskcache" value="no"<? ifthen( config.diskcache.value, "no", " checked" ); ?>> No caching</td></tr>
-<tr><td><input type="radio" name="diskcache" value="yes"<? ifthen( config.diskcache.value, "yes", " checked" ); ?>> Use disk cache</td></tr>
-</table><br>
-
-<h2>Authentication Method</h2>
-Squid can use the Digest or NTLM authentication method. Unless you have a Windows domain controller in your ISM network,
-use Digest authentication.<br><br>
-
-<table>
-<tr><td><input type="radio" name="authmethod" value="digest"<? ifthen( config.authmethod.value, "digest", " checked" ); ?>> Digest Authentication</td></tr>
-<tr><td><input type="radio" name="authmethod" value="ntlm"<? ifthen( config.authmethod.value, "ntlm", " checked" ); ?>> NTLM Authentication (also requires configuring NTLM authenticator)</td></tr>
-<tr><td><input type="radio" name="authmethod" value="none"<? ifthen( config.authmethod.value, "none", " checked" ); ?>> No Authentication (Not Recomended)</td></tr>
+<tr><td><input type="radio" name="diskcache" value="no"<? ifthen( config.diskcache.value, "no", " checked" ); ?>>No caching</td></tr>
+<tr><td><input type="radio" name="diskcache" value="yes"<? ifthen( config.diskcache.value, "yes", " checked" ); ?>>Use disk cache</td></tr>
</table><br>
<h2>Allowed Ports</h2>
@@ -102,10 +93,10 @@ servers run on other ports as well. These fields list all ports and port ranges
It is safe to leave these values at their default values.<br><br>
<table>
-<tr><td align="right"><b>Safe_ports</b></td><td><input type="text" name="safeports" value="<? io.write( config.safeports.value ) ?>"></td></tr>
-<tr><td align="right"><b>SSL_ports</b></td><td><input type="text" name="sslports" value="<? io.write( config.sslports.value ) ?>"></td></tr>
+<tr><td align="right"><b>Safe_ports</b></td><td><input type="text" name="safeports" value="<? io.write( config.safeports.value ) ?>" style="width:400px;"></td></tr>
+<tr><td align="right"><b>SSL_ports</b></td><td><input type="text" name="sslports" value="<? io.write( config.sslports.value ) ?>" style="width:400px;"></td></tr>
</table><br>
<input type="submit" name="cmd" value="save" style="width:100px"><br>
-</form>
+</form><br>