apache 配置檔案的配置(轉)
apache 配置檔案的配置(轉)[@more@]Apache為網路管理員提供了豐富多彩的功能,包括目錄索引、目錄別名、內容協商、可配置的HTTP錯誤報告、CGI程式的SetUID執行、子程式資源管理、伺服器端圖象對映、重寫URL、URL拼寫檢查以及聯機手冊man等。也就是說,如果您在Linux Server上成功安裝配置了Apache之後,您的計算機也將隨著Apache的生效而搖身一變,成為一臺名副其實的Web Server,這種變化的確是激動人心的。
在Internet時代,外部主頁的釋出已經成為樹立公司形象的一個重要手段,而內部主頁也成為公司管理的主要方式。但是,要想實現這些功能,首先應該把我們的Linux Server配置成為一臺強大的Web Server。本章將詳細介紹如何配置Apache伺服器。希望各位同仁能夠透過閱讀本片文章達到理論實踐雙豐收的目的,在很短的時間裡迅速成為一名出色的網路管理員。
1.2 所需資源
1.2.1 所需包
RedHat6.2 伺服器安裝
1.2.2 所需配置檔案
/etc/httpd/conf/httpd.conf 系統自帶,管理員配置
/etc/httpd/conf/access.conf 系統自帶,不需要修改
/etc/httpd/conf/srm.conf 系統自帶,不需要修改
1.3 配置方案
/etc/httpd/conf/httpd.conf
說明:apache主配置檔案
原始檔:
ServerType standalone
#定義WebServer的啟動方式為standalone,以增強其對大量訪問的及時響應性
ServerRoot "/etc/httpd"
#指定包含httpd伺服器檔案的目錄
LockFile /var/lock/httpd.lock
PidFile /var/run/httpd.pid
ScoreBoardFile /var/run/httpd.scoreboard
Timeout 300
#響應超時量,單位為秒
KeepAlive On
#允許使用者建立永久連線
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
#要保留的空閒伺服器程式的最小值
MaxSpareServers 20
#要保留的空閒伺服器程式的最大值
StartServers 8
#系統啟動時的守護程式數
MaxClients 150
#所能提供服務的最大客戶端編號,大於它的部分被放入請求佇列
MaxRequestsPerChild 100
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule env_module modules/mod_env.so
LoadModule config_log_module modules/mod_log_config.so
LoadModule agent_log_module modules/mod_log_agent.so
LoadModule referer_log_module modules/mod_log_referer.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule status_module modules/mod_status.so
LoadModule info_module modules/mod_info.so
LoadModule includes_module modules/mod_include.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule dir_module modules/mod_dir.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule asis_module modules/mod_asis.so
LoadModule imap_module modules/mod_imap.so
LoadModule action_module modules/mod_actions.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule access_module modules/mod_access.so
LoadModule auth_module modules/mod_auth.so
LoadModule anon_auth_module modules/mod_auth_anon.so
LoadModule db_auth_module modules/mod_auth_db.so
LoadModule digest_module modules/mod_digest.so
LoadModule proxy_module modules/libproxy.so
LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule perl_module modules/libperl.so
LoadModule php3_module modules/libphp3.so
ClearModuleList
AddModule mod_vhost_alias.c
AddModule mod_env.c
AddModule mod_log_config.c
AddModule mod_log_agent.c
AddModule mod_log_referer.c
AddModule mod_mime.c
AddModule mod_negotiation.c
AddModule mod_status.c
AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
#AddModule mod_speling.c
AddModule mod_userdir.c
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
AddModule mod_auth_anon.c
AddModule mod_auth_db.c
AddModule mod_digest.c
AddModule mod_proxy.c
AddModule mod_expires.c
AddModule mod_headers.c
AddModule mod_usertrack.c
AddModule mod_so.c
AddModule mod_setenvif.c
AddModule mod_perl.c
AddModule mod_php3.c
Port 80
#定義伺服器所使用的TCP的埠號
User nobody
Group nobody
#以上兩行是分配給httpd的新使用者的檔案許可權,出於安全的考慮把
它們的許可權設定成為最低。
ServerAdmin
#設定Web管理員的郵件地址
ServerName WebOA
#定義客戶端從伺服器讀取資料時返回給客戶端的主機名,其預設值
是localhost,第一次安裝Linux的時候經常這裡出錯。
DocumentRoot "/home/weboa/jakarta-tomcat/webapps/weboa"
#設定所有Apache文件的根目錄,比如說,使用者對
的訪問請求,Apache對它
的響應是/home/weboa/jakarta-tomcat/webapps/weboa/index.html
Options FollowSymLinks
AllowOverride None
Options Indexes Includes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all # 允許所有人訪問
UserDir public_html
DirectoryIndex index.html index.htm index.shtml index.cgi
#設定多種成功訪問主頁的方式,為的是提高系統的容錯性
AccessFileName .htaccess
Order allow,deny
Deny from all
UseCanonicalName On
TypesConfig /etc/mime.types
DefaultType text/plain
MIMEMagicFile share/magic
HostnameLookups Off
ErrorLog /usr/httpd/log/error_log
LogLevel warn
#定義那些錯誤型別被記錄到錯誤日誌中
LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
#所有的LogFormat都用來定義日誌中的條目
LogFormat "%h %l %u %t "%r" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog /usr/httpd/log/access_log common
ServerSignature On
Alias /icons/ "/home/httpd/icons/"
#定義虛擬主機目錄與系統目錄的對應關係
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"
#定義CGI目錄
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
IndexOptions FancyIndexing
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
DefaultIcon /icons/unknown.gif
ReadmeName README
HeaderName HEADER
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
AddLanguage en .en
AddLanguage fr .fr
AddLanguage de .de
AddLanguage da .da
AddLanguage el .el
AddLanguage it .it
LanguagePriority en fr de
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3-source .phps
AddType application/x-httpd-php .phtml
AddType application/x-tar .tgz
AddType text/html .shtml
AddHandler server-parsed .shtml
AddHandler imap-file map
BrowserMatch "RealPlayer 4.0" force-response-1.0
BrowserMatch "Java/1.0" force-response-1.0
BrowserMatch "JDK/1.0" force-response-1.0
Alias /perl/ /home/httpd/perl/
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
Alias /doc/ /usr/doc/
order deny,allow
deny from all
allow from localhost
Options Indexes FollowSymLinks
include /etc/httpd/conf/tomcat-apache.conf
Alias /netcard "/home/weboa/jakarta-tomcat/webapps/weboa/net_card"
Options Indexes FollowSymLinks
allow from all
CacheSize 5
#定義快取區大小,以KB為單位。可以根據需要和硬碟空間大小進行設定
CacheGcInterval 4
#每隔4小時檢查快取區,如果已經超過CacheSize就刪除檔案
CacheMaxExpire 24
#HTTP檔案最多被保持24小時
CacheLastModifiedFactor 0.1
#定義HTTP檔案失效期,預設是0.1 ,意思是說失效期=離最近一次修改的時間X,比如離最近一次修改的時間是5小時,那麼失效期就是5X0.1=0.5小時
CacheDefaultExpire 1
#這一指令提供一個預設的時間(小時)來銷燬快取的檔案,這些檔案的最後更改時間不詳。CacheMaxExpire 命令不覆蓋這一設定
## 以下是如何對一個目錄進行登陸控制的方法 ## 在/etc/httpd/conf/httpd.conf中新增以下內容:
Alias /weboa/ "/home/weboa/"
Options Indexes MultiViews
AllowOverride authconfig
Order allow,deny
Allow from all
在/home/weboa目錄下建立.htaccess檔案
authname "shared files"
authtype basic
authuserfile /etc/httpd/conf/passwd
require valid-user
在/etc/httpd/conf目錄下執行命令生成認證檔案
htpasswd -c thj thj #建立認證檔案和第一個名和密碼
htpasswd weboa weboa #新增其他使用者名稱和密碼
### 以下是做虛擬主機的實現方法 ###
需要在/etc/httpd/conf/httpd.conf中新增下列內容:
Alias /webadmin/ "/home/weboa/webadmin/html/"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
NameVirtualHost 192.168.0.1 #虛擬域名的DNS伺服器
ServerAdmin #網管郵件地址
DocumentRoot /home/weboa/webadmin/html/ #伺服器頁面目錄
ServerName webadmin.weboa.com.cn #伺服器名稱
需要在/var/named/name2ip.conf中新增的內容:
webadmin IN A 192.168.0.1
1.4 測試及管理辦法
1.4.1 測試方法
每當管理員更改了Apache的設定之後,都應執行 /etc/rc.d/init.d/httpd restart使得更改生效。
1.4.2 管理方法
Apache提供大量的日誌檔案,當Apache出錯的時候,管理員可以根據htppd.conf中的ErrorLog定義的路徑來診斷。具體方法是:
tail -f /var/log/httpd/apache/error_log
在Internet時代,外部主頁的釋出已經成為樹立公司形象的一個重要手段,而內部主頁也成為公司管理的主要方式。但是,要想實現這些功能,首先應該把我們的Linux Server配置成為一臺強大的Web Server。本章將詳細介紹如何配置Apache伺服器。希望各位同仁能夠透過閱讀本片文章達到理論實踐雙豐收的目的,在很短的時間裡迅速成為一名出色的網路管理員。
1.2 所需資源
1.2.1 所需包
RedHat6.2 伺服器安裝
1.2.2 所需配置檔案
/etc/httpd/conf/httpd.conf 系統自帶,管理員配置
/etc/httpd/conf/access.conf 系統自帶,不需要修改
/etc/httpd/conf/srm.conf 系統自帶,不需要修改
1.3 配置方案
/etc/httpd/conf/httpd.conf
說明:apache主配置檔案
原始檔:
ServerType standalone
#定義WebServer的啟動方式為standalone,以增強其對大量訪問的及時響應性
ServerRoot "/etc/httpd"
#指定包含httpd伺服器檔案的目錄
LockFile /var/lock/httpd.lock
PidFile /var/run/httpd.pid
ScoreBoardFile /var/run/httpd.scoreboard
Timeout 300
#響應超時量,單位為秒
KeepAlive On
#允許使用者建立永久連線
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
#要保留的空閒伺服器程式的最小值
MaxSpareServers 20
#要保留的空閒伺服器程式的最大值
StartServers 8
#系統啟動時的守護程式數
MaxClients 150
#所能提供服務的最大客戶端編號,大於它的部分被放入請求佇列
MaxRequestsPerChild 100
LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule env_module modules/mod_env.so
LoadModule config_log_module modules/mod_log_config.so
LoadModule agent_log_module modules/mod_log_agent.so
LoadModule referer_log_module modules/mod_log_referer.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule status_module modules/mod_status.so
LoadModule info_module modules/mod_info.so
LoadModule includes_module modules/mod_include.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule dir_module modules/mod_dir.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule asis_module modules/mod_asis.so
LoadModule imap_module modules/mod_imap.so
LoadModule action_module modules/mod_actions.so
LoadModule userdir_module modules/mod_userdir.so
LoadModule alias_module modules/mod_alias.so
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule access_module modules/mod_access.so
LoadModule auth_module modules/mod_auth.so
LoadModule anon_auth_module modules/mod_auth_anon.so
LoadModule db_auth_module modules/mod_auth_db.so
LoadModule digest_module modules/mod_digest.so
LoadModule proxy_module modules/libproxy.so
LoadModule expires_module modules/mod_expires.so
LoadModule headers_module modules/mod_headers.so
LoadModule usertrack_module modules/mod_usertrack.so
LoadModule setenvif_module modules/mod_setenvif.so
LoadModule perl_module modules/libperl.so
LoadModule php3_module modules/libphp3.so
ClearModuleList
AddModule mod_vhost_alias.c
AddModule mod_env.c
AddModule mod_log_config.c
AddModule mod_log_agent.c
AddModule mod_log_referer.c
AddModule mod_mime.c
AddModule mod_negotiation.c
AddModule mod_status.c
AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_actions.c
#AddModule mod_speling.c
AddModule mod_userdir.c
AddModule mod_alias.c
AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
AddModule mod_auth_anon.c
AddModule mod_auth_db.c
AddModule mod_digest.c
AddModule mod_proxy.c
AddModule mod_expires.c
AddModule mod_headers.c
AddModule mod_usertrack.c
AddModule mod_so.c
AddModule mod_setenvif.c
AddModule mod_perl.c
AddModule mod_php3.c
Port 80
#定義伺服器所使用的TCP的埠號
User nobody
Group nobody
#以上兩行是分配給httpd的新使用者的檔案許可權,出於安全的考慮把
它們的許可權設定成為最低。
ServerAdmin
#設定Web管理員的郵件地址
ServerName WebOA
#定義客戶端從伺服器讀取資料時返回給客戶端的主機名,其預設值
是localhost,第一次安裝Linux的時候經常這裡出錯。
DocumentRoot "/home/weboa/jakarta-tomcat/webapps/weboa"
#設定所有Apache文件的根目錄,比如說,使用者對
的訪問請求,Apache對它
的響應是/home/weboa/jakarta-tomcat/webapps/weboa/index.html
Options FollowSymLinks
AllowOverride None
Options Indexes Includes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all # 允許所有人訪問
UserDir public_html
DirectoryIndex index.html index.htm index.shtml index.cgi
#設定多種成功訪問主頁的方式,為的是提高系統的容錯性
AccessFileName .htaccess
Order allow,deny
Deny from all
UseCanonicalName On
TypesConfig /etc/mime.types
DefaultType text/plain
MIMEMagicFile share/magic
HostnameLookups Off
ErrorLog /usr/httpd/log/error_log
LogLevel warn
#定義那些錯誤型別被記錄到錯誤日誌中
LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
#所有的LogFormat都用來定義日誌中的條目
LogFormat "%h %l %u %t "%r" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog /usr/httpd/log/access_log common
ServerSignature On
Alias /icons/ "/home/httpd/icons/"
#定義虛擬主機目錄與系統目錄的對應關係
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
ScriptAlias /cgi-bin/ "/home/httpd/cgi-bin/"
#定義CGI目錄
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
IndexOptions FancyIndexing
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*
AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core
AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^
DefaultIcon /icons/unknown.gif
ReadmeName README
HeaderName HEADER
AddEncoding x-compress Z
AddEncoding x-gzip gz tgz
AddLanguage en .en
AddLanguage fr .fr
AddLanguage de .de
AddLanguage da .da
AddLanguage el .el
AddLanguage it .it
LanguagePriority en fr de
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3-source .phps
AddType application/x-httpd-php .phtml
AddType application/x-tar .tgz
AddType text/html .shtml
AddHandler server-parsed .shtml
AddHandler imap-file map
BrowserMatch "RealPlayer 4.0" force-response-1.0
BrowserMatch "Java/1.0" force-response-1.0
BrowserMatch "JDK/1.0" force-response-1.0
Alias /perl/ /home/httpd/perl/
SetHandler perl-script
PerlHandler Apache::Registry
Options +ExecCGI
Alias /doc/ /usr/doc/
order deny,allow
deny from all
allow from localhost
Options Indexes FollowSymLinks
include /etc/httpd/conf/tomcat-apache.conf
Alias /netcard "/home/weboa/jakarta-tomcat/webapps/weboa/net_card"
Options Indexes FollowSymLinks
allow from all
CacheSize 5
#定義快取區大小,以KB為單位。可以根據需要和硬碟空間大小進行設定
CacheGcInterval 4
#每隔4小時檢查快取區,如果已經超過CacheSize就刪除檔案
CacheMaxExpire 24
#HTTP檔案最多被保持24小時
CacheLastModifiedFactor 0.1
#定義HTTP檔案失效期,預設是0.1 ,意思是說失效期=離最近一次修改的時間X,比如離最近一次修改的時間是5小時,那麼失效期就是5X0.1=0.5小時
CacheDefaultExpire 1
#這一指令提供一個預設的時間(小時)來銷燬快取的檔案,這些檔案的最後更改時間不詳。CacheMaxExpire 命令不覆蓋這一設定
## 以下是如何對一個目錄進行登陸控制的方法 ## 在/etc/httpd/conf/httpd.conf中新增以下內容:
Alias /weboa/ "/home/weboa/"
Options Indexes MultiViews
AllowOverride authconfig
Order allow,deny
Allow from all
在/home/weboa目錄下建立.htaccess檔案
authname "shared files"
authtype basic
authuserfile /etc/httpd/conf/passwd
require valid-user
在/etc/httpd/conf目錄下執行命令生成認證檔案
htpasswd -c thj thj #建立認證檔案和第一個名和密碼
htpasswd weboa weboa #新增其他使用者名稱和密碼
### 以下是做虛擬主機的實現方法 ###
需要在/etc/httpd/conf/httpd.conf中新增下列內容:
Alias /webadmin/ "/home/weboa/webadmin/html/"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
NameVirtualHost 192.168.0.1 #虛擬域名的DNS伺服器
ServerAdmin #網管郵件地址
DocumentRoot /home/weboa/webadmin/html/ #伺服器頁面目錄
ServerName webadmin.weboa.com.cn #伺服器名稱
需要在/var/named/name2ip.conf中新增的內容:
webadmin IN A 192.168.0.1
1.4 測試及管理辦法
1.4.1 測試方法
每當管理員更改了Apache的設定之後,都應執行 /etc/rc.d/init.d/httpd restart使得更改生效。
1.4.2 管理方法
Apache提供大量的日誌檔案,當Apache出錯的時候,管理員可以根據htppd.conf中的ErrorLog定義的路徑來診斷。具體方法是:
tail -f /var/log/httpd/apache/error_log
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617542/viewspace-961637/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Apache 配置檔案說明(轉)Apache
- Linux伺服器---apache配置檔案Linux伺服器Apache
- Apache虛擬機器的配置檔案解說Apache虛擬機
- Windows + Apache + resin配置 (轉)WindowsApache
- 理解linux的配置檔案(轉)Linux
- oracle的網路配置檔案(轉)Oracle
- 轉載:Apache的配置詳解Apache
- Linux上配置Apache,支援中文名稱檔案下載的方法(轉)LinuxApache
- Git配置配置檔案Git
- 理解Linux配置檔案(轉)Linux
- Apache主配置檔案httpd.conf 詳解Apachehttpd
- Windows+Apache+resin配置(轉)WindowsApache
- 配置Apache Server + Tomcat (轉)ApacheServerTomcat
- [轉]Nginx 配置檔案nginx.conf的完整配置說明Nginx
- Centos中檢視nginx、apache、php、mysql配置檔案路徑CentOSNginxApachePHPMySql
- struts中配置過濾檔案! (轉)
- ssm的配置檔案SSM
- linux下的各項配置檔案(轉)Linux
- apache+tomcat配置指南(轉)ApacheTomcat
- UNIX下的PHP環境配置,+apache (轉)PHPApache
- mongodb配置檔案常用配置項MongoDB
- 加密(Asp.Net配置檔案的)配置節加密ASP.NET
- 網路配置檔案快速解讀(轉)
- 8.4.4 配置檔案
- vim配置檔案
- Maven配置檔案Maven
- 配置檔案vimrc
- MySQL配置檔案MySql
- shell配置檔案
- mysql 配置檔案MySql
- WCF配置檔案
- bash配置檔案
- pch檔案配置
- nginx配置檔案Nginx
- Nginx 配置檔案Nginx
- Maven 配置檔案Maven
- 認識 Linux 檔案屬性及檔案配置(轉)Linux
- Sendmail relay規則及配置檔案用法彙總 sendmail配置 (轉)AI