git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3103 6c8d7289-2bf4-0310-a012-ef5d649a1542pull/1/head
parent
defef70a9f
commit
a44ef51a8b
@ -1,32 +1,36 @@
|
||||
<p><form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<fieldset><legend id="http">HTTP Networking</legend>
|
||||
<table border="0" cellspacing="5">
|
||||
<tr valign="top">
|
||||
<td>Transparent Proxy:</td>
|
||||
<td><input type="checkbox" name="isTransparentProxy" align="top" #(isTransparentProxy)#::checked#(/isTransparentProxy)#></td>
|
||||
<td>With this you can specify if YaCy can be used as transparent proxy.<br>
|
||||
<i>Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:</i><br>
|
||||
<td><label for="trans_proxy">Transparent Proxy</label>:</td>
|
||||
<td><input type="checkbox" name="isTransparentProxy" id="trans_proxy" align="top" #(isTransparentProxy)#::checked="checked" #(/isTransparentProxy)#/></td>
|
||||
<td>
|
||||
With this you can specify if YaCy can be used as transparent proxy.<br />
|
||||
<i>Hint: On linux you can configure your firewall to transparently redirect all http traffic through yacy using this iptables rule:</i><br />
|
||||
<small><code>iptables -t nat -A PREROUTING -p tcp -s 192.168.0.0/16 --dport 80 -j DNAT --to 192.168.0.1:#[port]#</code></small>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Connection Keep-Alive:</td>
|
||||
<td><input type="checkbox" name="connectionKeepAliveSupport" align="top" #(connectionKeepAliveSupport)#::checked#(/connectionKeepAliveSupport)#></td>
|
||||
<td><label for="conn_keep_alive">Connection Keep-Alive</label>:</td>
|
||||
<td><input type="checkbox" name="connectionKeepAliveSupport" id="conn_keep_alive" align="top" #(connectionKeepAliveSupport)#::checked="checked" #(/connectionKeepAliveSupport)#/></td>
|
||||
<td>With this you can specify if YaCy should support the HTTP connection keep-alive feature.</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Send Via Header:</td>
|
||||
<td><input type="checkbox" name="proxy.sendViaHeader" align="top" #(proxy.sendViaHeader)#::checked#(/proxy.sendViaHeader)#></td>
|
||||
<td>Specifies if the proxy should send the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.45">Via</a> http header according to RFC 2616 Sect 14.45.</td>
|
||||
<td><label for="via_header">Send "Via" Header</label>:</td>
|
||||
<td><input type="checkbox" name="proxy.sendViaHeader" id="via_header" align="top" #(proxy.sendViaHeader)#::checked="checked" #(/proxy.sendViaHeader)#/></td>
|
||||
<td>
|
||||
Specifies if the proxy should send the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.45">Via</a>
|
||||
http header according to RFC 2616 Sect 14.45.
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Send X-Forwarded-For Header:</td>
|
||||
<td><input type="checkbox" name="proxy.sendXForwardedForHeader" align="top" #(proxy.sendXForwardedForHeader)#::checked#(/proxy.sendXForwardedForHeader)#></td>
|
||||
<td><label for="x_forwarded_header">Send "X-Forwarded-For" Header</label>:</td>
|
||||
<td><input type="checkbox" name="proxy.sendXForwardedForHeader" id="x_forwarded_header" align="top" #(proxy.sendXForwardedForHeader)#::checked="checked" #(/proxy.sendXForwardedForHeader)#/></td>
|
||||
<td>Specifies if the proxy should send the X-Forwarded-For http header.</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td colspan="3"><input type="submit" name="httpNetworking" value="Submit"> <i>Changes will take effect immediately.</i></td>
|
||||
<td colspan="3"><input type="submit" name="httpNetworking" value="Submit"> <i>Changes will take effect immediately.</i></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form><br>
|
||||
</form><br />
|
@ -1,27 +1,31 @@
|
||||
<p><form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<fieldset><legend id="messageForwarding">Message Forwarding</legend>
|
||||
<p>With this settings you can activate or deactivate forwarding of yacy-messages via email.
|
||||
<p>
|
||||
<p>With this settings you can activate or deactivate forwarding of yacy-messages via email.</p>
|
||||
<table border="0" cellspacing="5">
|
||||
<tr valign="top">
|
||||
<td>Enable message forwarding:</td>
|
||||
<td><input type="checkbox" name="msgForwardingEnabled" align="top" #(msgForwardingEnabled)#::checked#(/msgForwardingEnabled)#></td>
|
||||
<td><i>Enabling/Disabling message forwarding via email.</td>
|
||||
<td><label for="msg_forwarding">Enable message forwarding</label>:</td>
|
||||
<td><input type="checkbox" name="msgForwardingEnabled" id="msg_forwarding" align="top" #(msgForwardingEnabled)#::checked="checked" #(/msgForwardingEnabled)#/></td>
|
||||
<td><i>Enabling/Disabling message forwarding via email.</i></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding Command:</td>
|
||||
<td><input name="msgForwardingCmd" type="text" size="32" value="#[msgForwardingCmd]#"></td>
|
||||
<td><i>The command-line program that should be used to forward the message.<br>e.g.:</i> <code>/usr/sbin/sendmail</code></td>
|
||||
<td><label for="fwd_cmd">Forwarding Command</label>:</td>
|
||||
<td><input name="msgForwardingCmd" id="fwd_cmd" type="text" size="32" value="#[msgForwardingCmd]#"></td>
|
||||
<td>
|
||||
<i>The command-line program that should be used to forward the message.<br />
|
||||
e.g.:</i> <code>/usr/sbin/sendmail</code>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding To:</td>
|
||||
<td><input name="msgForwardingTo" type="text" size="32" maxlength="128" value="#[msgForwardingTo]#"></td>
|
||||
<td><i>The recipient email-address.<br> e.g.:</i> <code>root@localhost</code></td>
|
||||
<td><label for="fwd_to">Forwarding To</label>:</td>
|
||||
<td><input name="msgForwardingTo" id="fwd_to" type="text" size="32" maxlength="128" value="#[msgForwardingTo]#"></td>
|
||||
<td>
|
||||
<i>The recipient email-address.<br />
|
||||
e.g.:</i> <code>root@localhost</code>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td colspan="3"><input type="submit" name="msgForwarding" value="Submit"> <i>Changes will take effect immediately.</i></td>
|
||||
<td colspan="3"><input type="submit" name="msgForwarding" value="Submit"> <i>Changes will take effect immediately.</i></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</fieldset>
|
||||
</form><br>
|
||||
</form><br />
|
@ -1,43 +1,37 @@
|
||||
<p><form name="parsersettings" action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<form name="parsersettings" action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<fieldset><legend id="parser">Content Parser Settings</legend>
|
||||
<p>With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.<br>
|
||||
For a detailed description of the various MIME-types take a look at <a href="http://www.iana.org/assignments/media-types/">http://www.iana.org/assignments/media-types/</a></p>
|
||||
<p>
|
||||
With this settings you can activate or deactivate parsing of additional content-types based on their MIME-types.<br />
|
||||
For a detailed description of the various MIME-types take a look at
|
||||
<a href="http://www.iana.org/assignments/media-types/">http://www.iana.org/assignments/media-types/</a>
|
||||
</p>
|
||||
<table border="0" cellpadding="2" cellspacing="1">
|
||||
<tr class="TableHeader" valign="bottom">
|
||||
#{parserMode}#
|
||||
<td class="small" >#[name]#</td>
|
||||
#{/parserMode}#
|
||||
<tr class="TableHeader" valign="bottom">#{parserMode}#
|
||||
<td class="small" >#[name]#</td>#{/parserMode}#
|
||||
<td class="small" >Mime-Type</td>
|
||||
<td class="small" >Parser Usage</td>
|
||||
<td class="small" ></td>
|
||||
</tr>
|
||||
#{parser}#
|
||||
</tr>#{parser}#
|
||||
<tr class="TableCellDark">
|
||||
<td colspan="#[colspan]#"><nobr>#[name]# V#[version]#<nobr></td>
|
||||
<td colspan="#[colspan]#"><nobr>#[name]# V#[version]#</nobr></td>
|
||||
<td>#[usage]#</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
#{mime}#
|
||||
<tr class="TableCellLight">
|
||||
#{parserMode}#
|
||||
<td class="small" align="center"><input type="checkbox" name="#[optionName]#" align="top" #(status)#::checked#(/status)#></td>
|
||||
#{/parserMode}#
|
||||
</tr>#{mime}#
|
||||
<tr class="TableCellLight">#{parserMode}#
|
||||
<td class="small" align="center"><input type="checkbox" name="#[optionName]#" align="top" #(status)#::checked="checked" #(/status)#/></td>#{/parserMode}#
|
||||
<td class="small">#[mimetype]#</td>
|
||||
<td class="small"> </td>
|
||||
<td class="small" width="100%"></td>
|
||||
</tr>
|
||||
#{/mime}#
|
||||
#{/parser}#
|
||||
<tr class="TableCellDark">
|
||||
#{parserMode}#
|
||||
<td class="small" align="center"><input type="checkbox" name="#[name]#.allParserEnabled" align="top" onclick="javascript: ParserCheckboxes(this);" #(allParserEnabled)#::checked#(/allParserEnabled)#>
|
||||
#{/parserMode}#
|
||||
</tr>#{/mime}##{/parser}#
|
||||
<tr class="TableCellDark">#{parserMode}#
|
||||
<td class="small" align="center">
|
||||
<input type="checkbox" name="#[name]#.allParserEnabled" align="top" onclick="javascript: ParserCheckboxes(this);" #(allParserEnabled)#::checked="checked" #(/allParserEnabled)#/>#{/parserMode}#
|
||||
</td>
|
||||
<td colspan="2" class="small">Enable all parsers</td>
|
||||
<td class="small"> </td>
|
||||
</tr>
|
||||
<tr class="TableCellDark">
|
||||
<td colspan="#[parser.colspan]#" class="small" ><input type="submit" name="parserSettings" value="Submit"> Changes take effect immediately</td>
|
||||
<td colspan="#[parser.colspan]#" class="small" ><input type="submit" name="parserSettings" value="Submit" /> Changes take effect immediately</td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
@ -1,63 +1,66 @@
|
||||
<p><form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<fieldset><legend id="portForwarding">Port Forwarding (optional)</legend>
|
||||
<p>You can use a remote server running a ssh demon to forward your server/proxy port.
|
||||
<p>
|
||||
You can use a remote server running a ssh demon to forward your server/proxy port.
|
||||
This is useful if you want to tunnel throug a NAT/router.
|
||||
Alternatively, you can simply set a virtual server port on your NAT/Server to enable connections from outside.</p>
|
||||
Alternatively, you can simply set a virtual server port on your NAT/Server to enable connections from outside.
|
||||
</p>
|
||||
#(portForwarding.Available)#<p><b><font color="red">You need to install libx to use this feature</font></b></p>::#(/portForwarding.Available)#
|
||||
<table border="0" cellspacing="5">
|
||||
<tr valign="top">
|
||||
<td>Enable port forwarding:</td>
|
||||
<td><input type="checkbox" name="portForwarding.Enabled" align="top" #(portForwarding.Enabled)#::checked#(/portForwarding.Enabled)##(portForwarding.Available)# disabled="disabled"::#(/portForwarding.Available)#></td>
|
||||
<td>Enabling disabling port forwarding</td>
|
||||
<td><label for="pfwd">Enable port forwarding</label>:</td>
|
||||
<td><input type="checkbox" name="portForwarding.Enabled" id="pfwd" align="top" #(portForwarding.Enabled)#::checked="checked" #(/portForwarding.Enabled)##(portForwarding.Available)#disabled="disabled" ::#(/portForwarding.Available)#/></td>
|
||||
<td>Enabling / disabling port forwarding</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding method:</td>
|
||||
<td><select name="portForwarding.Type" size="1">
|
||||
<td><label for="sel_pfwd">Forwarding method</label>:</td>
|
||||
<td><select name="portForwarding.Type" id="sel_pfwd" size="1">
|
||||
#{forwardingMethods}#
|
||||
<option value="#[name]#" #(selected)#::selected#(/selected)#>#[name]#</option>
|
||||
<option value="#[name]#" #(selected)#::selected="selected"#(/selected)#>#[name]#</option>
|
||||
#{/forwardingMethods}#
|
||||
</select>
|
||||
</td>
|
||||
<td>Select the port forwarding method to use.</td>
|
||||
</tr>
|
||||
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr><td colspan="3"><hr /></td></tr>
|
||||
<tr><td colspan="3"><b>Special settings for port forwarding using secure channel</b></td></tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding via proxy:</td>
|
||||
<td><input type="checkbox" name="portForwarding.sch.UseProxy" align="top" #(portForwarding.sch.UseProxy)#::checked#(/portForwarding.sch.UseProxy)# DISABLED></td>
|
||||
<td><!-- Specifies if the connection should be established through the <a href="#proxy">remote proxy</a>.-->
|
||||
<i>Function not available at the moment.</i></td>
|
||||
<td><label for="pfwd_proxy">Forwarding via proxy</label>:</td>
|
||||
<td><input type="checkbox" name="portForwarding.sch.UseProxy" id="pfwd_proxy" align="top" #(portForwarding.sch.UseProxy)#::checked="checked" #(/portForwarding.sch.UseProxy)#disabled="disabled" /></td>
|
||||
<td>
|
||||
<!-- Specifies if the connection should be established through the <a href="#proxy">remote proxy</a>.-->
|
||||
<i>Function not available at the moment.</i>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding port:</td>
|
||||
<td><input name="portForwarding.sch.Port" type="text" size="5" maxlength="5" value="#[portForwarding.sch.Port]#"></td>
|
||||
<td><label for="pfwd_port">Forwarding port</label>:</td>
|
||||
<td><input name="portForwarding.sch.Port" id="pfwd_port" type="text" size="5" maxlength="5" value="#[portForwarding.sch.Port]#" /></td>
|
||||
<td>The tcp/ip port on the remote server that should be forwarded via the secure channel to the local host.</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding host:</td>
|
||||
<td><input name="portForwarding.sch.Host" type="text" size="32" maxlength="128" value="#[portForwarding.sch.Host]#"></td>
|
||||
<td>ip address or name of the remote server</td>
|
||||
<td><label for="pfwd_host">Forwarding host</label>:</td>
|
||||
<td><input name="portForwarding.sch.Host" id="pfwd_host" type="text" size="32" maxlength="128" value="#[portForwarding.sch.Host]#" /></td>
|
||||
<td>IP address or name of the remote server.</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding host port:</td>
|
||||
<td><input name="portForwarding.sch.HostPort" type="text" size="5" maxlength="5" value="#[portForwarding.sch.HostPort]#"></td>
|
||||
<td>ssh port of the remote server</td>
|
||||
<td><label for="pfwd_host_port">Forwarding host port</label>:</td>
|
||||
<td><input name="portForwarding.sch.HostPort" id="pfwd_host_port" type="text" size="5" maxlength="5" value="#[portForwarding.sch.HostPort]#" /></td>
|
||||
<td>SSH port of the remote server.</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding host user:</td>
|
||||
<td><input name="portForwarding.sch.HostUser" type="text" size="32" maxlength="128" value="#[portForwarding.sch.HostUser]#"></td>
|
||||
<td>username to login on the remote server</td>
|
||||
<td><label for="pfwd_host_user">Forwarding host user</label>:</td>
|
||||
<td><input name="portForwarding.sch.HostUser" id="pfwd_host_user" type="text" size="32" maxlength="128" value="#[portForwarding.sch.HostUser]#" /></td>
|
||||
<td>Username to login on the remote server.</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Forwarding host password:</td>
|
||||
<td><input name="portForwarding.sch.HostPwd" type="password" size="32" maxlength="128" value="#[portForwarding.sch.HostPwd]#"></td>
|
||||
<td>password to login on the remote server</td>
|
||||
<td><label for="pfwd_host_pwd">Forwarding host password</label>:</td>
|
||||
<td><input name="portForwarding.sch.HostPwd" id="pfwd_host_pwd" type="password" size="32" maxlength="128" value="#[portForwarding.sch.HostPwd]#" /></td>
|
||||
<td>Password to login on the remote server.</td>
|
||||
</tr>
|
||||
<tr><td colspan="3"><hr></td></tr>
|
||||
<tr valign="top">
|
||||
<td colspan="3"><input type="submit" name="portForwarding" value="Submit"#(portForwarding.Available)# disabled="disabled"::#(/portForwarding.Available)#> <i>Changes will take effect immediately.</i></td>
|
||||
<td colspan="3"><input type="submit" name="portForwarding" value="Submit"#(portForwarding.Available)# disabled="disabled"::#(/portForwarding.Available)# /> <i>Changes will take effect immediately.</i></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
</form><br>
|
||||
</form><br />
|
@ -1,64 +1,66 @@
|
||||
<p><form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<fieldset><legend id="proxy">Remote Proxy (optional)</legend>
|
||||
<p>YaCy can use another proxy to connect to the internet. You can enter the address for the remote proxy here:</p>
|
||||
<p><table border="0" cellspacing="5">
|
||||
|
||||
<table border="0" cellspacing="5">
|
||||
<!-- enabling/disabling remote proxy usage -->
|
||||
<tr valign="top">
|
||||
<td>Use remote proxy:</td>
|
||||
<td><input type="checkbox" name="remoteProxyUse" align="top" #(remoteProxyUseChecked)#::checked#(/remoteProxyUseChecked)#></td>
|
||||
<td><label for="rem_prxy">Use remote proxy</label>:</td>
|
||||
<td><input type="checkbox" name="remoteProxyUse" id="rem_prxy" align="top"#(remoteProxyUseChecked)#:: checked="checked"#(/remoteProxyUseChecked)# /></td>
|
||||
<td> </td>
|
||||
<td>Enables the usage of the remote proxy by yacy</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td colspan="2">Use remote proxy for yacy <-> yacy communication</td>
|
||||
<td><input type="checkbox" name="remoteProxyUse4Yacy" align="top" #(remoteProxyUse4Yacy)#::checked#(/remoteProxyUse4Yacy)#></td>
|
||||
<td>Specifies if the remote proxy should be used for the communication of this peer to other yacy peers.<br />
|
||||
<em>Hint:</em> Enabling this option could cause this peer to remain in junior status.</td>
|
||||
<td colspan="2"><label for="prxy4yacy">Use remote proxy for yacy <-> yacy communication</label></td>
|
||||
<td><input type="checkbox" name="remoteProxyUse4Yacy" id="prxy4yacy" align="top"#(remoteProxyUse4Yacy)#:: checked="checked"#(/remoteProxyUse4Yacy)# /></td>
|
||||
<td>
|
||||
Specifies if the remote proxy should be used for the communication of this peer to other yacy peers.<br />
|
||||
<em>Hint:</em> Enabling this option could cause this peer to remain in junior status.
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td colspan="2">Use remote proxy for https</td>
|
||||
<td><input type="checkbox" name="remoteProxyUse4SSL" align="top" #(remoteProxyUse4SSL)#::checked#(/remoteProxyUse4SSL)#></td>
|
||||
<td colspan="2"><label for="prxy4ssl">Use remote proxy for HTTPS</label></td>
|
||||
<td><input type="checkbox" name="remoteProxyUse4SSL" id="prxy4ssl" align="top"#(remoteProxyUse4SSL)#:: checked="checked"#(/remoteProxyUse4SSL)# /></td>
|
||||
<td>Specifies if YaCy should forward ssl connections to the remote proxy.</td>
|
||||
</tr>
|
||||
<tr><td colspan="4"><hr></td></tr>
|
||||
|
||||
<!-- remote proxy hostname + port -->
|
||||
<tr valign="top">
|
||||
<td>Remote proxy host:</td>
|
||||
<td colspan="2"><input name="remoteProxyHost" type="text" size="32" maxlength="128" value="#[remoteProxyHost]#"></td>
|
||||
<td><label for="host">Remote proxy host</label>:</td>
|
||||
<td colspan="2"><input name="remoteProxyHost" id="host" type="text" size="32" maxlength="128" value="#[remoteProxyHost]#" /></td>
|
||||
<td>The ip address or domain name of the remote proxy</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Remote proxy port:</td>
|
||||
<td colspan="2"><input name="remoteProxyPort" type="text" size="5" maxlength="5" value="#[remoteProxyPort]#"></td>
|
||||
<td><label for="port">Remote proxy port</label>:</td>
|
||||
<td colspan="2"><input name="remoteProxyPort" id="port" type="text" size="5" maxlength="5" value="#[remoteProxyPort]#" /></td>
|
||||
<td>the port of the remote proxy</td>
|
||||
</tr>
|
||||
|
||||
<!-- remote proxy username + pwd -->
|
||||
<tr valign="top">
|
||||
<td>Remote proxy user:</td>
|
||||
<td colspan="2"><input name="remoteProxyUser" type="text" size="32" maxlength="128" value="#[remoteProxyUser]#"></td>
|
||||
<td><label for="user">Remote proxy user</label>:</td>
|
||||
<td colspan="2"><input name="remoteProxyUser" type="text" id="user" size="32" maxlength="128" value="#[remoteProxyUser]#" /></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Remote proxy pwd:</td>
|
||||
<td colspan="2"><input name="remoteProxyPwd" type="password" size="32" maxlength="128" value="#[remoteProxyPwd]#"></td>
|
||||
<td><label for="pwd">Remote proxy password</label>:</td>
|
||||
<td colspan="2"><input name="remoteProxyPwd" id="pwd" type="password" size="32" maxlength="128" value="#[remoteProxyPwd]#" /></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
<tr><td colspan="4"><hr></td></tr>
|
||||
|
||||
<!-- no remote proxy pattern -->
|
||||
<tr valign="top">
|
||||
<td>no-proxy adresses:</td>
|
||||
<td colspan="2"><input name="remoteProxyNoProxy" type="text" size="32" maxlength="128" value="#[remoteProxyNoProxy]#"></td>
|
||||
<td><label for="no_prxy">No-proxy adresses</label>:</td>
|
||||
<td colspan="2"><input name="remoteProxyNoProxy" type="text" id="no_prxy" size="32" maxlength="128" value="#[remoteProxyNoProxy]#" /></td>
|
||||
<td>IP addresses for which the remote proxy should not be used</td>
|
||||
</tr>
|
||||
|
||||
<!-- submit button -->
|
||||
<tr valign="top">
|
||||
<td colspan="4"><input type="submit" name="proxysettings" value="Submit"> <em>Changes will take effect immediately.</em></td>
|
||||
<td colspan="4"><input type="submit" name="proxysettings" value="Submit" /> <em>Changes will take effect immediately.</em></td>
|
||||
</tr>
|
||||
</table>
|
||||
</fieldset>
|
||||
|
@ -1,15 +1,15 @@
|
||||
<p><fieldset>
|
||||
<b>Store into filesystem:</b></p>
|
||||
<fieldset>
|
||||
<p><strong>Store into filesystem:</strong></p>
|
||||
<p>You must configure this if you want to store the seed-list file onto the file system.</p>
|
||||
<form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<table border="0" cellspacing="5">
|
||||
<tr valign="top">
|
||||
<td>File Location:</td>
|
||||
<td><input name="seedFilePath" type="text" size="40" value="#[seedFilePath]#"></td>
|
||||
<td><label for="fs_path">File Location</label>:</td>
|
||||
<td><input name="seedFilePath" type="text" id="fs_path" size="40" value="#[seedFilePath]#" /></td>
|
||||
<td><i>Here you can specify the path within the filesystem where the seed-list file should be stored.</i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><input type="submit" name="seedFileSettings" value="Submit"></td>
|
||||
<td colspan="3"><input type="submit" name="seedFileSettings" value="Submit" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
@ -1,36 +1,37 @@
|
||||
<p><fieldset>
|
||||
<b>Uploading via SCP:</b></p>
|
||||
<fieldset>
|
||||
<p><strong>Uploading via SCP:</strong></p>
|
||||
<p>This is the account for a server where you are able to login via ssh.</p>
|
||||
<form action="SettingsAck_p.html" method="post" enctype="multipart/form-data">
|
||||
<table border="0" cellspacing="5">
|
||||
<tr valign="top">
|
||||
<td>Server:</td>
|
||||
<td><input name="seedScpServer" type="text" size="40" value="#[seedScpServer]#"></td>
|
||||
<td><label for="scp_serv">Server</label>:</td>
|
||||
<td><input name="seedScpServer" type="text" id="scp_serv" size="40" value="#[seedScpServer]#" /></td>
|
||||
<td><i>The host where you have an account, like 'my.host.net'</i></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Server Port:</td>
|
||||
<td><input name="seedScpServerPort" type="text" size="40" value="#[seedScpServerPort]#"></td>
|
||||
<td><label for="scp_port">Server Port</label>:</td>
|
||||
<td><input name="seedScpServerPort" type="text" id="scp_port" size="40" value="#[seedScpServerPort]#" /></td>
|
||||
<td><i>The sshd port of the host, like '22'</i></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Path:</td>
|
||||
<td><input name="seedScpPath" type="text" size="40" value="#[seedScpPath]#"></td>
|
||||
<td><i>The remote path on the server, like '~/yacy/seed.txt'.
|
||||
Missing sub-directories are NOT created automatically.</i></td>
|
||||
<td><label for="scp_path">Path</label>:</td>
|
||||
<td><input name="seedScpPath" type="text" id="scp_path" size="40" value="#[seedScpPath]#" /></td>
|
||||
<td>
|
||||
<i>The remote path on the server, like '~/yacy/seed.txt'. Missing sub-directories are NOT created automatically.</i>
|
||||
</td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Username:</td>
|
||||
<td><input name="seedScpAccount" type="text" size="40" value="#[seedScpAccount]#"></td>
|
||||
<td><label for="scp_user">Username</label>:</td>
|
||||
<td><input name="seedScpAccount" type="text" id="scp_user" size="40" value="#[seedScpAccount]#" /></td>
|
||||
<td><i>Your log-in at the server</i></td>
|
||||
</tr>
|
||||
<tr valign="top">
|
||||
<td>Password:</td>
|
||||
<td><input name="seedScpPassword" type="password" size="40" value="#[seedScpPassword]#"></td>
|
||||
<td><label for="scp_pwd">Password</label>:</td>
|
||||
<td><input name="seedScpPassword" type="password" id="scp_pwd" size="40" value="#[seedScpPassword]#" /></td>
|
||||
<td><i>The password</i></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><input type="submit" name="seedScpSettings" value="Submit"></td>
|
||||
<td colspan="3"><input type="submit" name="seedScpSettings" value="Submit" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
Loading…
Reference in new issue