summaryrefslogtreecommitdiffstats
path: root/squid-basic-html.lsp
blob: 941dfba1cea45fc3d471a4f87714050d054366a2 (plain)
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
<? 
   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</h1>
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.<br><br>
This page determines the general operational settings for squid.<br>

<h2>Status</h2>
<form action="" method="POST">
<table><tr>
<td>squid is: <b><? io.write( service.status ) ?> </b> </td>
<td><input type="submit" name="srvcmd" value="start" <? io.write( srv1fill ) ?> style="width:100px"></td>
<td><input type="submit" name="srvcmd" value="stop" <? io.write( srv2fill ) ?> style="width:100px"></td>
<td><input type="submit" name="srvcmd" value="restart" <? io.write( srv2fill ) ?> style="width:100px"></td>
</tr></table>

<pre style="color: #ff2020;"><? io.write( service.message ) ?></pre><br>

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.<br>

<h2>Configuration</h2>


</form>