我最近在我的 Ubuntu 机器上安装了 apache2,并且对安全性和用户权限有一些疑问。我知道如何监听其他端口,使用 -Indexes 隐藏索引以及如何在同一台机器上创建/禁用新的虚拟主机,但是我不确定标准安装配置中已经预设了很多用户选项。
谁能准确解释这个文件允许用户在系统上做什么?我花了很多时间查找 Apache 帮助指南和文档,但它非常触手可及,因为我真正需要的大部分是首先了解这里发生的事情。请帮忙。
cat /etc/apache2/sites-available/default
<VirtualHost *:80>
ServerAdmin webmaster@localhost
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>