ive最近在我的Ubuntu機器上安裝了apache2,並且有幾個關於安全性和用戶權限的問題。我知道如何在其他端口上偵聽,使用-Indexes隱藏索引以及如何在同一臺機器上創建/禁用新的虛擬主機,但在我不確定的標準安裝配置中已經預置了很多用戶選項。Apache安全默認安裝權限
任何人都可以解釋這個文件允許用戶在系統上做什麼?我花了很多時間在Apache幫助指南和文檔上查找,但它非常接觸和去,因爲大部分我真正需要的是首先理解這裏發生的事情。請幫忙。
貓的/ etc/apache2的/網站可用/默認
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
對不起,但這是serverfault的問題。 – rook 2010-09-30 16:38:44