Squid Proxy Server Kurulumu

Merhabalar Proxy server ile yapacaklarınız tamamen size kalmış, ben cloudflare’yi atlatmak için kullandım,

Kurulumu ve yapılandırılması,

apt-get install squid

Kullanıcı adı şifreye uygun şekilde yapılandırma yapabilmeniz için

apt-get install apache-utils

Yapılandırma için sudo nano /etc/squid.conf dosyasını açıp aşağıdaki içeriği yapıştırın.

http_port 31280

auth_param basic program /usr/lib/squid/basic_ncsa_auth /etc/squid/passwd

auth_param basic children 1

auth_param basic credentialsttl 1 minute

auth_param basic casesensitive off

acl auth proxy_auth REQUIRED

acl localhost src 127.0.0.0/8

http_access allow auth

http_access allow localhost

http_access deny all

cache deny all

## burası squid kullandığınızı gizlemek içindir##

forwarded_for off

request_header_access Via deny all

request_header_access Forwarded-For deny all

request_header_access X-Forwarded-For deny all

request_header_access Referer deny all

request_header_access From deny all

request_header_access User-Agent deny all

reply_header_access Via deny all

reply_header_access Server deny all

reply_header_access WWW-Authenticate deny all

reply_header_access Link deny all

 

Kullanıcı adı ve şifre alt yapısı için

sudo htpasswd /etc/squid/passwd 

yazıp kullanıcı adı ve şifrenizi oluşturun.

Bitirdiğinizde sudo systemctl squid enable ve sudo service squid start komutları ile sunucuyu başlatabilirsiniz.

Herşeyin tamam ve yolunda olduğunu test etmek için proxy ayarlarınıza normal ve ssl bağlantısı olarak sunucu ip ve 31280 portlarını girin, karşınıza kullanıcı adı ve şifre geliyorsa internette gezinmeye hazırsınız.

Linuxkit nedir

LinuxKit, a toolkit for building custom minimal, immutable Linux distributions.

  • Secure defaults without compromising usability
  • Everything is replaceable and customisable
  • Immutable infrastructure applied to building Linux distributions
  • Completely stateless, but persistent storage can be attached
  • Easy tooling, with easy iteration
  • Built with containers, for running containers
  • Designed to create reproducible builds [WIP]
  • Designed for building and running clustered applications, including but not limited to container orchestration such as Docker or Kubernetes
  • Designed from the experience of building Docker Editions, but redesigned as a general-purpose toolkit
  • Designed to be managed by external tooling, such as Infrakit or similar tools
  • Includes a set of longer-term collaborative projects in various stages of development to innovate on kernel and userspace changes, particularly around security

LinuxKit currently supports the x86_64arm64, and s390x architectures on a variety of platforms, both as virtual machines and baremetal (see below for details).

https://github.com/linuxkit/linuxkit