diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-09-06 18:38:32 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-09-06 18:38:32 +0000 |
commit | 26ac88432855d89a56828564e485c2b65e3b0c0c (patch) | |
tree | 0a55f54c4ffbb149549e59871c4fcfc3a57f4cc4 /packages/squid_upstream.xml | |
parent | 72f7791a1fda104c3720ecd8b98442cf5916e04f (diff) | |
download | pfsense-packages-26ac88432855d89a56828564e485c2b65e3b0c0c.tar.gz pfsense-packages-26ac88432855d89a56828564e485c2b65e3b0c0c.tar.bz2 pfsense-packages-26ac88432855d89a56828564e485c2b65e3b0c0c.zip |
Add new squid package created by Michael Capp <michael.capp_AT_gmail.com
NOTE: This package is not ready just yet. I'm commiting so we can test what is done so far and to figure out a few problems with rowhelper
Diffstat (limited to 'packages/squid_upstream.xml')
-rw-r--r-- | packages/squid_upstream.xml | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/packages/squid_upstream.xml b/packages/squid_upstream.xml new file mode 100644 index 00000000..3d18924f --- /dev/null +++ b/packages/squid_upstream.xml @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="utf-8" ?> + +<packagegui> + <info> + <name>Squid Upstream Proxy</name> + </info> + + <files></files> + <menus></menus> + + <configpath>installedpackages->package->$packagename->configuration->settings</configpath> + + <tabs> + <tab> + <text>General Settings</text> + <url>/pkg_edit.php?xml=squid1.xml&id=0</url> + </tab> + + <tab> + <text>Upstream Proxy</text> + <url>/pkg_edit.php?xml=squid_upstream.xml&id=0</url> + <active/> + </tab> + + <tab> + <text>Cache Mgmt</text> + <url>/pkg_edit.php?xml=squid_cache&.xmlamp;id=0</url> + </tab> + + <tab> + <text>Network Access Control</text> + <url>/pkg_edit.php?xml=squid_nac.xml&id=0</url> + </tab> + + <tab> + <text>Traffic Mgmt</text> + <url>/pkg_edit.php?xml=squid_traffic.xml&id=0</url> + </tab> + + <tab> + <text>Authentication Settings</text> + <url>/pkg_edit.php?xml=squid_auth.xml&id=0</url> + </tab> + + <tab> + <text>Users</text> + <url>/pkg_edit.php?xml=squid_users.xml&id=0</url> + </tab> + </tabs> + + <fields> + <field> + <fielddescr>Proxy Address Forwarding</fielddescr> + <fieldname>proxy_forwarding</fieldname> + <description>This option will enable the Proxy Server to forward requests to an upstream server.</description> + <type>checkbox</type> + </field> + + <field> + <fielddescr>Client IP Address Forwarding</fielddescr> + <fieldname>client_ip_forwardining</fieldname> + <description>This option will enable the client IP address to be forwarded to the upstream proxy server.</description> + <type>checkbox</type> + </field> + + <field> + <fielddescr>Username Forwarding</fielddescr> + <fieldname>user_forwarding</fieldname> + <description>This option will enable the username to be forwarded to the upstream proxy server.</description> + <type>checkbox</type> + </field> + + <field> + <fielddescr>Upstream Proxy Hostname</fielddescr> + <fieldname>upstream_proxy</fieldname> + <description>Enter the IP address or host name of the upstream proxy server.</description> + <type>input</type> + <validation>number</validation> + </field> + + <field> + <fielddescr>Upstream Proxy Port</fielddescr> + <fieldname>upstream_proxy_port</fieldname> + <description>Enter the port to use with the upstream proxy server. If no port is specified, the default is set to port "80".</description> + <size>4</size> + <type>input</type> + <validation>number</validation> + </field> + + <field> + <fielddescr>Upstream Username</fielddescr> + <fieldname>upstream_username</fieldname> + <description>If the upstream proxy requires a username, specify it here.</description> + <type>input</type> + </field> + + <field> + <fielddescr>Upstream Password</fielddescr> + <fieldname>upstream_password</fieldname> + <description>If the upstream proxy server requires a password with the above username, specify it here.</description> + <type>password</type> + </field> + </fields> + +</packagegui>
\ No newline at end of file |