Apache - Kök dizini sunma


0

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>

Eğer senin DocumentRootiçin ayarlanır /var/www/htmlO dizine erişimine izin vermek istemiyoruz neden? İçerik ise /var/www/html/exampleve sunucu üst düzey dizin olarak o dizini kullanmak değil sahip olmak istiyorum /var/www/html, sizin için değerini değiştirebilir DocumentRootiç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.
Ocak'ta

Ayarlanan belge kök düğümü / dizininde bulunur
Jojo Coana,
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.