tinyproxy / tinyproxy.github.io

tinyproxy pages
GNU General Public License v3.0
7 stars 23 forks source link

Not masking IP address #7

Open drtiwarir opened 2 years ago

drtiwarir commented 2 years ago

I have configured Tinyproxy on Ubuntu 20.04 server, it works but does not hide my IP address, I am trying to use it to watch some geoblocked streaming videos. Below is my conf file, can somebody tell me what wrong I am doing.

User tinyproxy Group tinyproxy Port 8888 Listen 139.59.xx.xx Bind 139.59.xx.xx Timeout 600 DefaultErrorFile "/usr/share/tinyproxy/default.html" StatFile "/usr/share/tinyproxy/stats.html" LogFile "/var/log/tinyproxy/tinyproxy.log" LogLevel Info XTinyproxy No MaxClients 100 MinSpareServers 5 MaxSpareServers 20 StartServers 10 MaxRequestsPerChild 0 Allow 127.0.0.1 Allow 121.45.xx.xx DisableViaHeader Yes Anonymous "Accept" Anonymous "Accept-Charset" Anonymous "Accept-Encoding" Anonymous "Accept-Language" Anonymous "Authorization" Anonymous "Cache-Control" Anonymous "Connection" Anonymous "Content-Length" Anonymous "Content-Type" Anonymous "Cookie" Anonymous "Date" Anonymous "Expect" Anonymous "Host" Anonymous "If-Match" Anonymous "If-Modified-Since" Anonymous "If-None-Match" Anonymous "If-Range" Anonymous "If-Unmodified-Since" Anonymous "Pragma" Anonymous "Range" Anonymous "TE" Anonymous "Upgrade" ConnectPort 443 ConnectPort 563

Thanks

rofl0r commented 2 years ago

use http_proxy=ip:port curl ifconfig.me to see whether it returns your or the proxy's ip. i'm pretty sure it will show the proxy's. all your anonymous statements are useless unless the target site uses plain old http, which is unlikely. the issue is probably that the server's location is also blocked.

rofl0r commented 2 years ago

also remove the CONNECTPORT directives, they just restrict what you can connect to.

drtiwarir commented 2 years ago

Thanks I will try over weekend and see how it goes