إعداد PAC File لتكوين البروكسي تلقائيًا

ملف التكوين التلقائي للبروكسي (Proxy Auto-Configuration - PAC) هو ملف نصي بسيط مكتوب بلغة JavaScript. يحتوي على دالة واحدة تسمى FindProxyForURL تقرر المتصفحات من خلالها: هل أستخدم البروكسي لهذا الرابط؟ أم أتصل مباشرة؟

بنية ملف PAC الأساسية

أنشئ ملفاً باسم proxy.pac وضع فيه الكود التالي:

function FindProxyForURL(url, host) {
    // 1. إذا كان الرابط محلياً (Intranet)، لا تستخدم البروكسي
    if (isPlainHostName(host) || dnsDomainIs(host, ".mycompany.local")) {
        return "DIRECT";
    },
    // 2. لنطاقات معينة، استخدم بروكسي خاص
    if (shExpMatch(host, "*.secure-bank.com")) {
        return "PROXY secure-proxy.mycompany.com:8080";
    },
    // 3. لباقي الإنترنت، استخدم البروكسي الرئيسي، وإذا فشل استخدم الاحتياطي
    return "PROXY proxy1.mycompany.com:8080; PROXY proxy2.mycompany.com:8080; DIRECT";
}

كيفية نشره

ارفع الملف على خادم ويب داخلي (Web Server) يمكن لجميع الأجهزة الوصول إليه. مثلاً: http://wpad.mycompany.local/proxy.pac. تأكد من أن خادم الويب يرسل نوع المحتوى (MIME Type) الصحيح: application/x-ns-proxy-autoconfig.

نصيحة ذهبية

اختبر ملف PAC دائماً قبل نشره. خطأ صغير في بناء الجملة (Syntax Error) قد يقطع الإنترنت عن الشركة بأكملها! استخدم أدوات مثل PAC Parser للتأكد من صحة الكود.

Disclosure: we may earn a commission if you purchase through some links.

Services Related To This Article

These offers are related to privacy, password security, and development workflows. Replace the current links with your real affiliate links through environment variables.

Default Links Need Replacement

Proton

Privacy, mail, and VPN

A strong fit for privacy-focused visitors who want VPN and secure email under one brand.

Explore Proton

Surfshark

Consumer VPN

Best on pages about geo-blocking, privacy, and public Wi-Fi protection.

Try Surfshark

NordVPN

High-converting VPN

A clear offer for users who need a paid, more durable alternative to a free proxy.

View NordVPN

1Password

Password management

The best match for password, secrets, team access, and personal security pages.

Discover 1Password

DigitalOcean

Developer cloud hosting

A strong fit for proxy setup, server, and infrastructure content aimed at developers and small teams.

Start with DigitalOcean