blob: 1fe61c92a8d3a4ef5fa7fc053c126cdc229b01fb (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="settings.css" />
</head>
<body>
<form>
<table class="configtable">
<tr>
<th colspan="2">
Proxy configuration
</th>
</tr>
<tr>
<td colspan="2">The default values to use with a Tor service are:<br/>type=socks5, host=127.0.0.1, port=9050, RemoteDNS=true.<br/>The Tor service needs to be installed and running, separately of IceCat.</td>
</tr>
<tr>
<td>Type</td>
<td>
<select id="type">
<option value="direct" selected>Select proxy type</option>
<option value="http">HTTP</option>
<option value="https">HTTPS</option>
<option value="socks">SOCKS5</option>
<option value="socks4">SOCKS4</option>
</select>
</td>
</tr>
<tr>
<td>Host</td>
<td><input type="text" id="host"></td>
</tr>
<tr>
<td>Port</td>
<td><input type="number" min="1" max="65535" id="port"></td>
</tr>
<tr id="usernamerow">
<td>Username (optional)</td>
<td><input type="text" id="username"></td>
</tr>
<tr id="passwordrow">
<td>Password (optional)</td>
<td><input type="password" id="password"></td>
</tr>
<tr id="dnsrow">
<td>Remote DNS</td>
<td><input type="checkbox" id="dns"></td>
</tr>
<tr>
<th colspan="2">
General settings
</th>
</tr>
<tr id="skiplocalrow">
<td>Don't use proxy for hosts we can detect as local (e.g. LAN IPs)</td>
<td><input type="checkbox" id="skiplocal"></td>
</tr>
</table>
</form>
<script src="settings.js"></script>
</body>
</html>
|