⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configuration

📁 基于Linux平台的SNMP/SOAP客服端源码:很不错的东西,可以学习,也可以应用开发.
💻
📖 第 1 页 / 共 2 页
字号:
# you couldn't alias out a particular user's home directory.# The configuration below is what we consider a decent default # configuration.  If you want the functionality provided by a particular# module, remove the "#" sign at the beginning of the line. But remember, # the more modules you compile into the server, the larger the executable# is and the more memory it will take, so if you are unlikely to use the# functionality of a particular module you might wish to leave it out.## mod_mmap_static is an experimental module, you almost certainly## don't need it.  It can make some webservers faster.  No further## documentation is provided here because you'd be foolish## to use mod_mmap_static without reading the full documentation.# AddModule modules/experimental/mod_mmap_static.o## mod_vhost_alias provides support for mass virtual hosting## by dynamically changing the document root and CGI directory## based on the host header or local IP address of the request.## See "../htdocs/manual/vhosts/mass.html".# AddModule modules/standard/mod_vhost_alias.o#### Config manipulation modules#### mod_env sets up additional or restricted environment variables to be## passed to CGI/SSI scripts.  It is listed first (lowest priority) since## it does not do per-request stuff.AddModule modules/standard/mod_env.o#### Request logging modules##AddModule modules/standard/mod_log_config.o## Optional modules for NCSA user-agent/referer logging compatibility## We recommend, however, that you just use the configurable access_log.# AddModule modules/standard/mod_log_agent.o# AddModule modules/standard/mod_log_referer.o#### Type checking modules#### mod_mime_magic determines the type of a file by examining a few bytes## of it and testing against a database of filetype signatures.  It is## based on the unix file(1) command.## mod_mime maps filename extensions to content types, encodings, and## "magic" type handlers (the latter is obsoleted by mod_actions, and## don't confuse it with the previous module).## mod_negotiation allows content selection based on the Accept* headers.# AddModule modules/standard/mod_mime_magic.oAddModule modules/standard/mod_mime.oAddModule modules/standard/mod_negotiation.o#### Content delivery modules#### The status module allows the server to display current details about ## how well it is performing and what it is doing.  Consider also enabling ## the 'ExtendedStatus On' directive to allow full status information.## Please note that doing so can result in a palpable performance hit.AddModule modules/standard/mod_status.o## The Info module displays configuration information for the server and ## all included modules. It's very useful for debugging.# AddModule modules/standard/mod_info.o## mod_include translates server-side include (SSI) statements in text files.## mod_autoindex handles requests for directories which have no index file## mod_dir handles requests on directories and directory index files.## mod_cgi handles CGI scripts.AddModule modules/standard/mod_include.oAddModule modules/standard/mod_autoindex.oAddModule modules/standard/mod_dir.oAddModule modules/standard/mod_cgi.o## The asis module implements ".asis" file types, which allow the embedding## of HTTP headers at the beginning of the document.  mod_imap handles internal ## imagemaps (no more cgi-bin/imagemap/!).  mod_actions is used to specify ## CGI scripts which act as "handlers" for particular files, for example to## automatically convert every GIF to another file type.AddModule modules/standard/mod_asis.oAddModule modules/standard/mod_imap.oAddModule modules/standard/mod_actions.o#### URL translation modules.#### The Speling module attempts to correct misspellings of URLs that## users might have entered, namely by checking capitalizations## or by allowing up to one misspelling (character insertion / omission /## transposition/typo). This catches the majority of misspelled requests.## If it finds a match, a "spelling corrected" redirection is returned.# AddModule modules/standard/mod_speling.o## The UserDir module for selecting resource directories by user name## and a common prefix, e.g., /~<user> , /usr/web/<user> , etc.AddModule modules/standard/mod_userdir.o## The Alias module provides simple URL translation and redirection.AddModule modules/standard/mod_alias.o## The URL rewriting module allows for powerful URI-to-URI and ## URI-to-filename mapping using a regular expression based ## rule-controlled rewriting engine.# AddModule modules/standard/mod_rewrite.o#### Access control and authentication modules. ##AddModule modules/standard/mod_access.oAddModule modules/standard/mod_auth.o## The anon_auth module allows for anonymous-FTP-style username/ ## password authentication.# AddModule modules/standard/mod_auth_anon.o## db_auth and dbm_auth work with Berkeley DB files - make sure there## is support for DBM files on your system.  You may need to grab the GNU## "gdbm" package if not and possibly adjust EXTRA_LIBS. (This may be## done by Configure at a later date)# AddModule modules/standard/mod_auth_dbm.o# AddModule modules/standard/mod_auth_db.o## "digest" implements HTTP Digest Authentication rather than the less ## secure Basic Auth used by the other modules.  This is the old version.# AddModule modules/standard/mod_digest.o## "auth_digest" implements HTTP/1.1 Digest Authentication (RFC 2617)## rather than the less secure Basic Auth used by the other modules.## This is an updated version of mod_digest, but it is not as well tested## and is therefore marked experimental.  Use either the one above, or## this one below, but not both digest modules.## Note: if you add this module in then you might also need the## truerand library (available for example from## ftp://research.att.com/dist/mab/librand.shar) - see the Rule## DEV_RANDOM above for more info.#### Must be added above (run later than) the proxy module because the## WWW-Authenticate and Proxy-Authenticate headers are parsed in the## post-read-request phase and it needs to know if this is a proxy request.# AddModule modules/experimental/mod_auth_digest.o## Optional Proxy#### The proxy module enables the server to act as a proxy for outside## http and ftp services. It's not as complete as it could be yet.## NOTE: You do not want this module UNLESS you are running a proxy;##       it is not needed for normal (origin server) operation.# AddModule modules/proxy/libproxy.a## Optional response header manipulation modules. #### cern_meta mimics the behavior of the CERN web server with regards to ## metainformation files.  # AddModule modules/standard/mod_cern_meta.o## The expires module can apply Expires: headers to resources,## as a function of access time or modification time.# AddModule modules/standard/mod_expires.o## The headers module can set arbitrary HTTP response headers,## as configured in server, vhost, access.conf or .htaccess configs# AddModule modules/standard/mod_headers.o## Miscellaneous modules#### mod_usertrack is the new name for mod_cookies.  This module## uses Netscape cookies to automatically construct and log## click-trails from Netscape cookies, or compatible clients who## aren't coming in via proxy.   #### You do not need this, or any other module to allow your site## to use Cookies.  This module is for user tracking only# AddModule modules/standard/mod_usertrack.o## The example module, which demonstrates the use of the API.  See## the file modules/example/README for details.  This module should## only be used for testing -- DO NOT ENABLE IT on a production server.# AddModule modules/example/mod_example.o## mod_unique_id generates unique identifiers for each hit, which are## available in the environment variable UNIQUE_ID.  It may not work on all## systems, hence it is not included by default.# AddModule modules/standard/mod_unique_id.o## mod_so lets you add modules to Apache without recompiling.## This is an experimental feature at this stage and only supported ## on a subset of the platforms we generally support. ## Don't change this entry to a 'SharedModule' variant (Bootstrapping!)# AddModule modules/standard/mod_so.o## mod_setenvif lets you set environment variables based on the HTTP header## fields in the request; this is useful for conditional HTML, for example.## Since it is also used to detect buggy browsers for workarounds, it## should be the last (highest priority) module.AddModule modules/mod_gsoap/mod_gsoap.oAddModule modules/standard/mod_setenvif.o

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -