Apache'nin kök dizinimi sunmasını engellemeye çalışıyorum, ancak reddetme ayarının apache'nin <Directory />
/ var / www / html olarak sunulmasını da engelleyeceğim . Konfigürasyondaki bu dizine erişim izni olsa bile.
Apache yapılandırma dosyası:
<Directory />
AllowOverride None
</Directory>
DocumentRoot "/var/www/html"
#
# Relax access to content within /var/www.
#
<Directory "/var/www">
AllowOverride None
# Allow open access:
Require all granted
</Directory>
# Further relax access to the default document root:
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Require all granted
Options -Indexes
</Directory>
Ayarlanan belge kök düğümü / dizininde bulunur
—
Jojo Coana,
DocumentRoot
için ayarlanır/var/www/html
O dizine erişimine izin vermek istemiyoruz neden? İçerik ise/var/www/html/example
ve sunucu üst düzey dizin olarak o dizini kullanmak değil sahip olmak istiyorum/var/www/html
, sizin için değerini değiştirebilirDocumentRoot
için/var/www/html/example
./
İşletim sistemi düzeyinde Apache dışında, aka "root" dizinine atıfta bulunuyorsanız , Apache zaten erişim sağlamaz.