-
-
Notifications
You must be signed in to change notification settings - Fork 2
Arch Linux Proxy Servers
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to proxy servers on Arch Linux, including Squid, and proxy server configuration.
Install Squid:
# Install Squid
sudo pacman -S squid
# Enable service
sudo systemctl enable squid
sudo systemctl start squidEdit config:
# Edit config
sudo vim /etc/squid/squid.confSettings:
http_port 3128
acl localnet src 192.168.0.0/16
http_access allow localnet
Test:
# Test proxy
curl -x http://localhost:3128 http://example.comCheck logs:
# Check Squid logs
sudo journalctl -u squid
# Check access logs
sudo tail -f /var/log/squid/access.logThis guide covered Squid, proxy configuration, and troubleshooting.
- Arch Linux Networking - Network setup
- Arch Linux Web Servers - Web servers
- ArchWiki Proxy: https://wiki.archlinux.org/title/Proxy_server
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.