1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
<?
local form = ...
local data = form.option
local service = form.service
local config = form.service.config
local srv1fill = ""
local srv2fill = "disabled"
if service.status == "running" then
srv1fill = "disabled"
srv2fill = ""
end
local ifthen = function( variable, value, result )
if variable == value then
io.write( result )
end
end
?>
<h1>Web Proxy</h1>
<p>
Squid is a web proxy server. It makes web requests in behalf of the client, and
inspecting the returned and optionally caches that content so that the next time
a client request is made, the content can be served from local disk. This can make
web surfing faster. Squid can also forward its requests on to a content filter,
such as DansGuardian.
</p>
<p>
This page lets you modify the authentication scheme of squid.
</p>
<h2>Status</h2>
<form action="" method="POST">
<dt>squid is: <? io.write( service.status ) ?></dt>
<dd><input class="submit" type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?>>
<input class="submit" type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?>>
<input class="submit" type="submit" name="srvcmd" value="restart" <? io.write( srv2fill ) ?>></dd>
</form>
<p>
<pre style="color: #ff2020;"><? io.write( service.message ) ?></pre>
</p>
<p>
This process runs as a service. When you make and save changes, the configuration
files for the service are changed. However, the changes will not be <i>applied</i>
until you restart the service.
</p>
<form action="" method="POST">
<h2>Configuration</h2>
<h3>Authentication Scheme</h3>
<p>
Choose the desired authentication mechanisms and their order.
</p>
<input type="hidden" name="authmethod" value="<? io.write( config.authmethod.value ) ?>">
<table style="width: 50px">
<tr><td>
<table><tr><td>
<input class="submit" type="submit" value="^">
</td></tr><tr><td>
<input class="submit" type="submit" value="v">
</td></tr></table>
</td><td>
<b>Active</b><br>
<select class="select" name="tmpauth" size="5" style="width:150px;">
<?
local lap = 1
local method = config.authmethod.value
if #config.authmethod.value > 0 then
while lap <= #config.authmethod.value do
if string.sub( method, lap, lap ) == "D" then
io.write( "<option value=\"D\">Digest</option>\n" )
elseif string.sub( method, lap, lap ) == "N" then
io.write( "<option value=\"N\">NTLM</option>\n" )
elseif string.sub( method, lap, lap ) == "B" then
io.write( "<option value=\"B\">Basic</option>\n" )
end
lap = lap + 1
end
end
?>
</select>
</td><td>
<table><tr><td>
<input class="submit" type="submit" name="inout" value=" << ">
</td></tr><tr><td>
<input class="submit" type="submit" name="inout" value=" >> ">
</td></tr></table>
</td><td>
<b>Selectable</b><br>
<select name="tmpempty" size="5" style="width:150px;">
<?
if string.match( config.authmethod.value, "D" ) == nil then
io.write( "<option value=\"D\">Digest</option>\n" )
end
if string.match( config.authmethod.value, "N" ) == nil then
io.write( "<option value=\"N\">NTLM</option>\n" )
end
if string.match( config.authmethod.value, "B" ) == nil then
io.write( "<option value=\"B\">Basic</option>\n" )
end
?>
</select>
</td></tr>
</table><br>
</form>
|