📄 glossary.html.en
字号:
almost any type of directive, not just access-control directives.<br /> See: <a href="configuring.html">Configuration Files</a> </dd> <dt><a name="httpd.conf" id="httpd.conf">httpd.conf</a></dt> <dd>The main Apache <span title="see glossary">→</span> <a href="./glossary.html#configurationfile">configuration file</a>. The default location is <code>/usr/local/apache2/conf/httpd.conf</code>, but it may be moved using run-time or compile-time configuration.<br /> See: <a href="configuring.html">Configuration Files</a> </dd> <dt><a name="hypertexttransferprotocol" id="hypertexttransferprotocol">HyperText Transfer Protocol</a> <a name="http" id="hhtp">(HTTP)</a></dt> <dd>The standard transmission protocol used on the World Wide Web. Apache implements version 1.1 of the protocol, referred to as HTTP/1.1 and defined by <a href="http://ietf.org/rfc/rfc2616.txt">RFC 2616</a>. </dd> <dt><a name="https" id="https">HTTPS</a></dt> <dd>The HyperText Transfer Protocol (Secure), the standard encrypted communication mechanism on the World Wide Web. This is actually just HTTP over <span title="see glossary">→</span> <a href="./glossary.html#ssl">SSL</a>.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="method" id="method">Method</a></dt> <dd>In the context of <span title="see glossary">→</span> <a href="./glossary.html#http">HTTP</a>, an action to perform on a resource, specified on the request line by the client. Some of the methods available in HTTP are <code>GET</code>, <code>POST</code>, and <code>PUT</code>. </dd> <dt><a name="messagedigest" id="messagedigest">Message Digest</a></dt> <dd>A hash of a message, which can be used to verify that the contents of the message have not been altered in transit.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="mime-type" id="mime-type">MIME-type</a></dt> <dd>A way to describe the kind of document being transmitted. Its name comes from that fact that its format is borrowed from the Multipurpose Internet Mail Extensions. It consists of a major type and a minor type, separated by a slash. Some examples are <code>text/html</code>, <code>image/gif</code>, and <code>application/octet-stream</code>. In HTTP, the MIME-type is transmitted in the <code>Content-Type</code> <span title="see glossary">→</span> <a href="./glossary.html#header">header</a>.<br /> See: <a href="mod/mod_mime.html">mod_mime</a> </dd> <dt><a name="module" id="module">Module</a></dt> <dd>An independent part of a program. Much of Apache's functionality is contained in modules that you can choose to include or exclude. Modules that are compiled into the Apache <code class="program"><a href="./programs/httpd.html">httpd</a></code> binary are called <dfn>static modules</dfn>, while modules that are stored separately and can be optionally loaded at run-time are called <dfn>dynamic modules</dfn> or <span title="see glossary">→</span> <a href="./glossary.html#dso">DSOs</a>. Modules that are included by default are called <dfn>base modules</dfn>. Many modules are available for Apache that are not distributed as part of the Apache HTTP Server <span title="see glossary">→</span> <a href="./glossary.html#tarball">tarball</a>. These are referred to as <dfn>third-party modules</dfn>.<br /> See: <a href="mod/">Module Index</a> </dd> <dt><a name="modulemagicnumber" id="modulemagicnumber">Module Magic Number</a> (<a name="mmn" id="mmn">MMN</a>)</dt> <dd>Module Magic Number is a constant defined in the Apache source code that is associated with binary compatibility of modules. It is changed when internal Apache structures, function calls and other significant parts of API change in such a way that binary compatibility cannot be guaranteed any more. On MMN change, all third party modules have to be at least recompiled, sometimes even slightly changed in order to work with the new version of Apache. </dd> <dt><a name="openssl" id="openssl">OpenSSL</a></dt> <dd>The Open Source toolkit for SSL/TLS<br /> See <a href="http://www.openssl.org/">http://www.openssl.org/</a># </dd> <dt><a name="passphrase" id="passphrase">Pass Phrase</a></dt> <dd>The word or phrase that protects private key files. It prevents unauthorized users from encrypting them. Usually it's just the secret encryption/decryption key used for <span title="see glossary">→</span> <a href="./glossary.html#cipher">Ciphers</a>.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="plaintext" id="plaintext">Plaintext</a></dt> <dd>The unencrypted text.</dd> <dt><a name="privatekey" id="privatekey">Private Key</a></dt> <dd>The secret key in a <span title="see glossary">→</span> <a href="./glossary.html#publickeycryptography">Public Key Cryptography</a> system, used to decrypt incoming messages and sign outgoing ones.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="proxy" id="proxy">Proxy</a></dt> <dd>An intermediate server that sits between the client and the <em>origin server</em>. It accepts requests from clients, transmits those requests on to the origin server, and then returns the response from the origin server to the client. If several clients request the same content, the proxy can deliver that content from its cache, rather than requesting it from the origin server each time, thereby reducing response time.<br /> See: <a href="mod/mod_proxy.html">mod_proxy</a> </dd> <dt><a name="publickey" id="publickey">Public Key</a></dt> <dd>The publicly available key in a <span title="see glossary">→</span> <a href="./glossary.html#publickeycryptography">Public Key Cryptography</a> system, used to encrypt messages bound for its owner and to decrypt signatures made by its owner.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="publickeycryptography" id="publickeycryptography">Public Key Cryptography</a></dt> <dd>The study and application of asymmetric encryption systems, which use one key for encryption and another for decryption. A corresponding pair of such keys constitutes a key pair. Also called Asymmetric Cryptography. <br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="regularexpresion" id="regularexpresion">Regular Expression</a> <a name="regex" id="regex">(Regex)</a></dt> <dd>A way of describing a pattern in text - for example, "all the words that begin with the letter A" or "every 10-digit phone number" or even "Every sentence with two commas in it, and no capital letter Q". Regular expressions are useful in Apache because they let you apply certain attributes against collections of files or resources in very flexible ways - for example, all .gif and .jpg files under any "images" directory could be written as "<code>/images/.*(jpg|gif)$</code>". Apache uses Perl Compatible Regular Expressions provided by the <a href="http://www.pcre.org/">PCRE</a> library. </dd> <dt><a name="reverseproxy" id="reverseproxy">Reverse Proxy</a></dt> <dd>A <span title="see glossary">→</span> <a href="./glossary.html#proxy">proxy</a> server that appears to the client as if it is an <em>origin server</em>. This is useful to hide the real origin server from the client for security reasons, or to load balance. </dd> <dt><a name="securesocketslayer" id="securesocketslayer">Secure Sockets Layer</a> <a name="ssl" id="ssl">(SSL)</a></dt> <dd>A protocol created by Netscape Communications Corporation for general communication authentication and encryption over TCP/IP networks. The most popular usage is <em>HTTPS</em>, i.e. the HyperText Transfer Protocol (HTTP) over SSL.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="serversideincludes" id="serversideincludes">Server Side Includes</a> <a name="ssi" id="ssi">(SSI)</a></dt> <dd>A technique for embedding processing directives inside HTML files.<br /> See: <a href="howto/ssi.html">Introduction to Server Side Includes</a> </dd> <dt><a name="session" id="session">Session</a></dt> <dd>The context information of a communication in general.</dd> <dt><a name="ssleay" id="ssleay">SSLeay</a></dt> <dd>The original SSL/TLS implementation library developed by Eric A. Young </dd> <dt><a name="symmetriccryptophraphy" id="symmetriccryptophraphy">Symmetric Cryptography</a></dt> <dd>The study and application of <em>Ciphers</em> that use a single secret key for both encryption and decryption operations.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="tarball" id="tarball">Tarball</a></dt> <dd>A package of files gathered together using the <code>tar</code> utility. Apache distributions are stored in compressed tar archives or using pkzip. </dd> <dt><a name="transportlayersecurity" id="transportlayersecurity">Transport Layer Security</a> <a name="tls" id="tls">(TLS)</a></dt> <dd>The successor protocol to SSL, created by the Internet Engineering Task Force (IETF) for general communication authentication and encryption over TCP/IP networks. TLS version 1 and is nearly identical with SSL version 3.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd> <dt><a name="uniformresourcelocator" id="uniformresourcelocator">Uniform Resource Locator</a> <a name="url" id="url">(URL)</a></dt> <dd>The name/address of a resource on the Internet. This is the common informal term for what is formally called a <span title="see glossary">→</span> <a href="./glossary.html#uniformresourceidentifier">Uniform Resource Identifier</a>. URLs are usually made up of a scheme, like <code>http</code> or <code>https</code>, a hostname, and a path. A URL for this page is <code>http://httpd.apache.org/docs-2.1/glossary.html</code>. </dd> <dt><a name="uniformresourceidentifier" id="uniformresourceidentifier">Uniform Resource Identifier</a> <a name="URI" id="URI">(URI)</a></dt> <dd>A compact string of characters for identifying an abstract or physical resource. It is formally defined by <a href="http://www.ietf.org/rfc/rfc2396.txt">RFC 2396</a>. URIs used on the world-wide web are commonly referred to as <span title="see glossary">→</span> <a href="./glossary.html#url">URLs</a>. </dd> <dt><a name="virtualhosting" id="virtualhosting">Virtual Hosting</a></dt> <dd>Serving multiple websites using a single instance of Apache. <em>IP virtual hosting</em> differentiates between websites based on their IP address, while <em>name-based virtual hosting</em> uses only the name of the host and can therefore host many sites on the same IP address.<br /> See: <a href="vhosts/">Apache Virtual Host documentation</a> </dd> <dt><a name="x.509" id="x.509">X.509</a></dt> <dd>An authentication certificate scheme recommended by the International Telecommunication Union (ITU-T) which is used for SSL/TLS authentication.<br /> See: <a href="ssl/">SSL/TLS Encryption</a> </dd></dl></div></div><div class="bottomlang"><p><span>Available Languages: </span><a href="./de/glossary.html" hreflang="de" rel="alternate" title="Deutsch"> de </a> |<a href="./en/glossary.html" title="English"> en </a> |<a href="./es/glossary.html" hreflang="es" rel="alternate" title="Espa駉l"> es </a> |<a href="./ko/glossary.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p></div><div id="footer"><p class="apache">Copyright 1995-2005 The Apache Software Foundation or its licensors, as applicable.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p><p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/directives.html">Directives</a> | <a href="./faq/">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p></div></body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -