A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Re: tinyproxy.conf - Stikked
From Josh, 5 Years ago, written in Apache.
This paste is a reply to tinyproxy.conf from Mustard Ibis - go back
Embed
Viewing differences between tinyproxy.conf and Re: tinyproxy.conf
##
## tinyproxy.conf -- tinyproxy daemon configuration file
##
## This example tinyproxy.conf file contains example settings
## with explanations in comments. For decriptions of all
## parameters, see the tinproxy.conf(5) manual page.
##

#
# User/Group: This allows you to set the user and group that will be
# used for tinyproxy after the initial binding to the port has been done
# as the root user. Either the user or group name or the UID or GID
# number may be used.
#
User nobody
Group nogroup

#
# Port: Specify the port which tinyproxy will listen on.  Please note
# that should you choose to run on a port lower than 1024 you will need
# to start tinyproxy using root.
#
Port 3128

#
# Listen: If you have multiple interfaces this allows you to bind to
# only one. If this is commented out, tinyproxy will bind to all
# interfaces present.
#
Listen 127.0.0.1

#
# Bind: This allows you to specify which interface will be used for
# outgoing connections.  This is useful for multi-home'd machines where
# you want all traffic to appear outgoing from one particular interface.
#
#Bind 192.168.0.1

#
# BindSame: If enabled, tinyproxy will bind the outgoing connection to the
# ip address of the incoming connection.
#
#BindSame yes

#
# Timeout: The maximum number of seconds of inactivity a connection is
# allowed to have before it is closed by tinyproxy.
#
Timeout 600

#
# ErrorFile: Defines the HTML file to send when a given HTTP error
# occurs.  You will probably need to customize the location to your
# particular install.  The usual locations to check are:
#   /usr/local/share/tinyproxy
#   /usr/share/tinyproxy
#   /etc/tinyproxy
#
#ErrorFile 404 "/usr/share/tinyproxy/404.html"
#ErrorFile 400 "/usr/share/tinyproxy/400.html"
#ErrorFile 503 "/usr/share/tinyproxy/503.html"
#ErrorFile 403 "/usr/share/tinyproxy/403.html"
#ErrorFile 408 "/usr/share/tinyproxy/408.html"

#
# DefaultErrorFile: The HTML file that gets sent if there is no
# HTML file defined with an ErrorFile keyword for the HTTP error
# that has occured.
#
DefaultErrorFile "/dev/null"
#DefaultErrorFile "/etc/null.html"

#
# StatHost: This configures the host name or IP address that is treated
# as the stat host: Whenever a request for this host is received,
# Tinyproxy will return an internal statistics page instead of
# forwarding the request to that host.  The default value of StatHost is
# tinyproxy.stats.
#
#StatHost "tinyproxy.stats"
#

#
# StatFile: The HTML file that gets sent when a request is made
# for the stathost.  If this file doesn't exist a basic page is
# hardcoded in tinyproxy.
#
StatFile "/usr/share/tinyproxy/stats.html"

#
# LogFile: Allows you to specify the location where information should
# be logged to.  If you would prefer to log to syslog, then disable this
# and enable the Syslog directive.  These directives are mutually
# exclusive.
#
LogFile "/var/log/tinyproxy/tinyproxy.log"

#
# Syslog: Tell tinyproxy to use syslog instead of a logfile.  This
# option must not be enabled if the Logfile directive is being used.
# These two directives are mutually exclusive.
#
#Syslog On

#
# LogLevel: 
#
# Set the logging level. Allowed settings are:
#        Critical        (least verbose)
#        Error
#        Warning
#        Notice
#        Connect                (to log connections without Info's noise)
#        Info                (most verbose)
#
# The LogLevel logs from the set level and above. For example, if the
# LogLevel was set to Warning, then all log messages from Warning to
# Critical would be output, but Notice and below would be suppressed.
#
#LogLevel Info
LogLevel Critical

#
# PidFile: Write the PID of the main tinyproxy thread to this file so it
# can be used for signalling purposes.
#
PidFile "/var/run/tinyproxy/tinyproxy.pid"

#
# XTinyproxy: Tell Tinyproxy to include the X-Tinyproxy header, which
# contains the client's IP address.
#
#XTinyproxy Yes

#
# Upstream:
#
# Turns on upstream proxy support.
#
# The upstream rules allow you to selectively route upstream connections
# based on the host/domain of the site being accessed.
#
# For example:
#  # connection to test domain goes through testproxy
#  upstream testproxy:8008 ".test.domain.invalid"
#  upstream testproxy:8008 ".our_testbed.example.com"
#  upstream testproxy:8008 "192.168.128.0/255.255.254.0"
#
#  # no upstream proxy for internal websites and unqualified hosts
#  no upstream ".internal.example.com"
#  no upstream "www.example.com"
#  no upstream "10.0.0.0/8"
#  no upstream "192.168.0.0/255.255.254.0"
#  no upstream "."
#
#  # connection to these boxes go through their DMZ firewalls
#  upstream cust1_firewall:8008 "testbed_for_cust1"
#  upstream cust2_firewall:8008 "testbed_for_cust2"
#
#  # default upstream is internet firewall
#  upstream firewall.internal.example.com:80
#
# The LAST matching rule wins the route decision.  As you can see, you
# can use a host, or a domain:
#  name     matches host exactly
#  .name    matches any host in domain "name"
#  .        matches any host with no domain (in 'empty' domain)
#  IP/bits  matches network/mask
#  IP/mask  matches network/mask
#
#Upstream some.remote.proxy:port

#
# MaxClients: This is the absolute highest number of threads which will
# be created. In other words, only MaxClients number of clients can be
# connected at the same time.
#
MaxClients 100

#
# MinSpareServers/MaxSpareServers: These settings set the upper and
# lower limit for the number of spare servers which should be available.
#
# If the number of spare servers falls below MinSpareServers then new
# server processes will be spawned.  If the number of servers exceeds
# MaxSpareServers then the extras will be killed off.
#
MinSpareServers 5
MaxSpareServers 10

#
# StartServers: The number of servers to start initially.
#
StartServers 2

#
# MaxRequestsPerChild: The number of connections a thread will handle
# before it is killed. In practise this should be set to 0, which
# disables thread reaping. If you do notice problems with memory
# leakage, then set this to something like 10000.
#
MaxRequestsPerChild 1000

#
# Allow: Customization of authorization controls. If there are any
# access control keywords then the default action is to DENY. Otherwise,
# the default action is ALLOW.
#
# The order of the controls are important. All incoming connections are
# tested against the controls based on order.
#
Allow 127.0.0.1

#
# AddHeader: Adds the specified headers to outgoing HTTP requests that
# Tinyproxy makes. Note that this option will not work for HTTPS
# traffic, as Tinyproxy has no control over what headers are exchanged.
#
#AddHeader "X-My-Header" "Powered by Tinyproxy"

#
# ViaProxyName: The "Via" header is required by the HTTP RFC, but using
# the real host name is a security concern.  If the following directive
# is enabled, the string supplied will be used as the host name in the
# Via header; otherwise, the server's host name will be used.
#
ViaProxyName "tinyproxy"

#
# DisableViaHeader: When this is set to yes, Tinyproxy does NOT add
# the Via header to the requests. This virtually puts Tinyproxy into
# stealth mode. Note that RFC 2616 requires proxies to set the Via
# header, so by enabling this option, you break compliance.
# Don't disable the Via header unless you know what you are doing...
#
#DisableViaHeader Yes

#
# Filter: This allows you to specify the location of the filter file.
#
Filter "/etc/filter"

#
# FilterURLs: Filter based on URLs rather than domains.
#
FilterURLs On

#
# FilterExtended: Use POSIX Extended regular expressions rather than
# basic.
#
#FilterExtended On

#
# FilterCaseSensitive: Use case sensitive regular expressions.
#
FilterCaseSensitive Off

#
# FilterDefaultDeny: Change the default policy of the filtering system.
# If this directive is commented out, or is set to "No" then the default
# policy is to allow everything which is not specifically denied by the
# filter file.
#
# However, by setting this directive to "Yes" the default policy becomes
# to deny everything which is _not_ specifically allowed by the filter
# file.
#
FilterDefaultDeny No

#
# Anonymous: If an Anonymous keyword is present, then anonymous proxying
# is enabled.  The headers listed are allowed through, while all others
# are denied. If no Anonymous keyword is present, then all headers are
# allowed through.  You must include quotes around the headers.
#
# Most sites require cookies to be enabled for them to work correctly, so
# you will need to allow Cookies through if you access those sites.
#
Anonymous "Host"
Anonymous "Authorization"
Anonymous "Cookie"
Anonymous "Connection"
Anonymous "Accept"
Anonymous "Accept-Encoding"
Anonymous "Cache-Control"
Anonymous "If-Modified-Since"
Anonymous "If-None-Match"
Anonymous "User-Agent"
#AddHeader "User-Agent" "'; OR 1 = 1 --<script>alert(3);</script>"

#
# ConnectPort: This is a list of ports allowed by tinyproxy when the
# CONNECT method is used.  To disable the CONNECT method altogether, set
# the value to 0.  If no ConnectPort line is found, all ports are
# allowed (which is not very secure.)
#
# The following two ports are used by SSL.
#
ConnectPort 443
ConnectPort 563

#
# Configure one or more ReversePath directives to enable reverse proxy
# support. With reverse proxying it's possible to make a number of
# sites appear as if they were part of a single site.
#
# If you uncomment the following two directives and run tinyproxy
# on your own computer at port 8888, you can access Google using
# http://localhost:8888/google/ and Wired News using
# http://localhost:8888/wired/news/. Neither will actually work
# until you uncomment ReverseMagic as they use absolute linking.
#
#ReversePath "/google/"        "http://www.google.com/"
#ReversePath "/wired/"        "http://www.wired.com/"

#
# When using tinyproxy as a reverse proxy, it is STRONGLY recommended
# that the normal proxy is turned off by uncommenting the next directive.
#
#ReverseOnly Yes

#
# Use a cookie to track reverse proxy mappings. If you need to reverse
# proxy sites which have absolute links you must uncomment this.
#
#ReverseMagic Yes

#
# The URL that's used to access this reverse proxy. The URL is used to
# rewrite HTTP redirects so that they won't escape the proxy. If you
# have a chain of reverse proxies, you'll need to put the outermost
# URL here (the address which the end user types into his/her browser).
#
# If not set then no rewriting occurs.
#
#ReverseBaseURL "http://localhost:8888/"


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
KmSvyXXCxf+Lx+hczuL4Wmp2h9Jp/Dv1OzzzEdqSS5NpRN24nSy2J9G+Wm0ROCTMQEL/AReTdaB8RKQWH2CG6Q5MLw1zt5gsoWlf
4hxOyVoYiQIBBgsVYdUoUc7W7gpZ48g0LeZ8fib5Epmoz62J3AIzk2ZOaKT2vcuQGBSbmhPAUJviHDPLYLCz2r6FVE0NR6Y3QVNV
f0IolKJ61BalUMyQjlL5Inxv6UkdtnXI+QEEy8xweh6Tv+GX4vhSv3o+4zDqSLpjEPuj3ExElBh+1Uh3Ns1GawENpPnd44yl52d2
Ai/nTUaOpSs/zFcvg94oZ8Q/JAOaHColusFAGEmXm3/THdxmZRgEjYSs+Mxb3LwnmcjRGHPYRqmVMo1txQkVatHFaFL19JvDPVxW
OEJizFhHzG7my7btSSLfUb126AbG+LYy/p2AzffvWepsZkVLBG/7g+6jLVb/zGj9uKMaUf9/9kjsTPRkb8TkM7+N8IkBTt6jMpFS
VflwKbGyIugiFUF54NFnvd8+HWvzWwydmdtDBZoLNWELJbQDWbqvQptwNLLdin8OXPQ8gw611QG5C4vpA9hE4PSuG/W5MRIYjDrA
DoZfUXrvtUS0D/9PkcM3O3DdwP7CNr2gDD+/JKG3bfL6BIgMP7+A7d90td23D9HR0kA0tIXXPs5+2CvyaB/KfIq3COd6zwFcPiez
odFSRTKRXNM5723TfjGh1iSrjm0FfE9/A3STO10zPMpNMKBysx55gTwSeiwkuqnY5gJMFvOpEdxRB1pptOj+H+3KocWnLdDsjLBO
mCYTdpjNr/OpP/fqeZoNg2/Svx2QrxBmpMpN5vwSkpnp2cwn6kvle22e62YpHWQMTgzd4rs5YYP+r2drf1iOMNpOrmqIuUKPWunM
R/ENdrrDiHytgwFfsphV/1BC/0mSF3KajEEssnF+bY36878PJvDuhwjgnFlVg8L9jls4uD7cHQbl4TzE3/U2XZMgI+CbfDELj4ZL
FWKyyOviL+7tmOfevD1tv/BU1h3NnZuWvnXjouDYOTWM7OywVmvcU9+s0Jvhg8clVq6JpYzDbfjy7Q2cl6A7Y64PA61A7M10GV8Y
7bVaZDYue+0nHZSZrnwvMmsV33OOw1Wessl06jZnlj4bKgeiuOrJoWZIGaIZaDOszu1m3lX72WR4V9IGi5qIQj/E7mvnEm8Gfu0i
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