aboutsummaryrefslogtreecommitdiff
path: root/files/fr/glossary/pac/index.md
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-11-15 21:40:53 +0100
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-11-15 21:55:31 +0100
commit7a89da1bf309b748ff4f4be5b16f8d9d148cbe8e (patch)
tree1e5d89ff08a80c6a5311b703cd11c2e91b342622 /files/fr/glossary/pac/index.md
parent6f6e297fbfa7867b1f42c4245df20f4282b3b083 (diff)
downloadtranslated-content-7a89da1bf309b748ff4f4be5b16f8d9d148cbe8e.tar.gz
translated-content-7a89da1bf309b748ff4f4be5b16f8d9d148cbe8e.tar.bz2
translated-content-7a89da1bf309b748ff4f4be5b16f8d9d148cbe8e.zip
move *.html to *.md
Diffstat (limited to 'files/fr/glossary/pac/index.md')
-rw-r--r--files/fr/glossary/pac/index.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/files/fr/glossary/pac/index.md b/files/fr/glossary/pac/index.md
new file mode 100644
index 0000000000..2c7128a386
--- /dev/null
+++ b/files/fr/glossary/pac/index.md
@@ -0,0 +1,32 @@
+---
+title: PAC
+slug: Glossary/PAC
+tags:
+ - Glossaire
+ - Programmation
+translation_of: Glossary/PAC
+original_slug: Glossaire/PAC
+---
+<p>Un fichier Proxy Auto-Configuration (PAC) est un fichier qui contient une fonction <code>FindProxyForURL()</code> laquelle est utilisée par le navigateur pour déterminer  si les requêtes (y compris HTTP, HTTPS et FTP) doivent être envoyées directement à la destination, ou si elles doivent être transmises via un serveur proxy Web.</p>
+
+<pre class="brush: js">function FindProxyForURL(url, host) {
+ /* ... */
+}
+
+ret = FindProxyForURL(url, host)</pre>
+
+<p>Voir <a href="/fr/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_(PAC)_file">fichier Proxy Auto-Configuration (PAC)</a>  pour plus de détails sur la façon de les utiliser et d'en créer de nouveaux.</p>
+
+<h2 id="Pour_approfondir">Pour approfondir</h2>
+
+<h3 id="Culture_générale">Culture générale</h3>
+
+<ul>
+ <li><a href="https://fr.wikipedia.org/wiki/Fichier_.PAC">PAC</a> sur Wikipédia</li>
+</ul>
+
+<h3 id="Référence_technique">Référence technique</h3>
+
+<ul>
+ <li><a href="/fr/docs/Web/HTTP/Proxy_servers_and_tunneling/Proxy_Auto-Configuration_(PAC)_file">Fichier d'auto-configuration du Proxy</a> sur MDN</li>
+</ul>