34 lines
803 B
Plaintext
34 lines
803 B
Plaintext
# Tinyproxy Configuration
|
|
|
|
# Listen on all network interfaces
|
|
Bind 0.0.0.0
|
|
|
|
# Port to listen on
|
|
Port 8888
|
|
|
|
# Allow connections from any client
|
|
Allow 0.0.0.0/0
|
|
|
|
# Enable logging
|
|
LogLevel Info
|
|
|
|
# Specify log file path
|
|
LogFile /var/log/tinyproxy.log
|
|
|
|
# Set maximum number of clients
|
|
MaxClients 100
|
|
|
|
# Set maximum number of simultaneous connections per client
|
|
MaxClientsPerIP 10
|
|
|
|
# Enable anonymous proxying
|
|
Anonymous Yes
|
|
|
|
# Specify the user and group to run as
|
|
User tinyproxy
|
|
Group tinyproxy
|
|
|
|
# Enable strict HTTP parsing
|
|
DisableViaHeader Yes
|
|
AddHeader "Authorization" "Basic cnJnTkxTRXFsY2w0NVJWTVFhMEx4UUxPSE9nWjJMN1psR3BYVXJDcDpsS3NtcmFlU21paFk4clRRZ2Q4VFRHSW5jVWxvVzdYb2tSOFdMSTBvWnE4akNKNTlndUFrb3BnOVpPVWVYRmR5cnF3dUxpNlR5WExaSkRwMUtCOERXRXVzMDV0dFMzTlFIb0x2ZlJvT1F0SnBRYXh6eUlvODVveWtqUW4yNUtlYg=="
|