diff options
author | doktornotor <notordoktor@gmail.com> | 2015-09-26 21:55:42 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-09-26 21:55:42 +0200 |
commit | 7df238d6073d4719fac7d9b51f6430f0b3e3f95b (patch) | |
tree | 5a4b5d2a36cb5af63da4fa61a972d75e4b2de95c | |
parent | 611caad30cf3d486abbc7e55b515be93d7073b85 (diff) | |
download | pfsense-packages-7df238d6073d4719fac7d9b51f6430f0b3e3f95b.tar.gz pfsense-packages-7df238d6073d4719fac7d9b51f6430f0b3e3f95b.tar.bz2 pfsense-packages-7df238d6073d4719fac7d9b51f6430f0b3e3f95b.zip |
Add privileges configuration to squid3 package
-rw-r--r-- | config/squid3/34/squid.priv.inc | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/config/squid3/34/squid.priv.inc b/config/squid3/34/squid.priv.inc new file mode 100644 index 00000000..1124b20d --- /dev/null +++ b/config/squid3/34/squid.priv.inc @@ -0,0 +1,63 @@ +<?php +/* + squid.priv.inc + part of pfSense (http://www.pfSense.org/) + Copyright (C) 2015 ESF, LLC + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ +global $priv_list; + +$priv_list['page-services-squid3'] = array(); +$priv_list['page-services-squid3']['name'] = "WebCfg - Services: Squid3 package"; +$priv_list['page-services-squid3']['descr'] = "Allow access to Squid3 package GUI"; +$priv_list['page-services-squid3']['match'] = array(); + +$priv_list['page-services-squid3']['match'][] = pkg.php?xml=squid_reverse_peer.xml* +$priv_list['page-services-squid3']['match'][] = pkg.php?xml=squid_reverse_redir.xml +$priv_list['page-services-squid3']['match'][] = pkg.php?xml=squid_reverse_uri.xml* +$priv_list['page-services-squid3']['match'][] = pkg.php?xml=squid_upstream.xml* +$priv_list['page-services-squid3']['match'][] = pkg.php?xml=squid_users.xml* + +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_antivirus.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_auth.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_cache.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_nac.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_reverse.xml +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_reverse_general.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_reverse_peer.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_reverse_redir.xml +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_reverse_sync.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_reverse_uri.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_sync.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_traffic.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_upstream.xml* +$priv_list['page-services-squid3']['match'][] = pkg_edit.php?xml=squid_users.xml* + +$priv_list['page-services-squid3']['match'][] = shortcuts/pkg_squid.inc* +$priv_list['page-services-squid3']['match'][] = squid_monitor.php* +$priv_list['page-services-squid3']['match'][] = squid_monitor_data.php* +$priv_list['page-services-squid3']['match'][] = squid_log_parser.php* + +?> |