Foutbericht “Verboden U heeft geen toestemming om toegang te krijgen tot / op deze server”

Ik heb mijn Apache zelf geconfigureerd en heb geprobeerd phpMyAdminop een virtuele host te laden, maar ik ontving:

403 Forbidden U heeft geen toestemming voor toegang tot / op deze server

Mijn httpd.conf

#
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
# In particular, see 
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "C:/Program Files (x86)/Apache Software Foundation/Apache2.2" will be interpreted by the
# server as "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/logs/foo.log".
#
# NOTE: Where filenames are specified, you must use forward slashes
# instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
# If a drive letter is omitted, the drive on which httpd.exe is located
# will be used by default.  It is recommended that you always supply
# an explicit drive letter in absolute paths to avoid confusion.
#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path.  If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk.  If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
#
ServerRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2"
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 127.0.0.1:80
Include conf/vhosts.conf
#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
#LoadModule auth_digest_module modules/mod_auth_digest.so
#LoadModule authn_alias_module modules/mod_authn_alias.so
#LoadModule authn_anon_module modules/mod_authn_anon.so
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
#LoadModule authn_dbm_module modules/mod_authn_dbm.so
LoadModule authn_default_module modules/mod_authn_default.so
LoadModule authn_file_module modules/mod_authn_file.so
#LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
#LoadModule authz_dbm_module modules/mod_authz_dbm.so
LoadModule authz_default_module modules/mod_authz_default.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
#LoadModule authz_owner_module modules/mod_authz_owner.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
#LoadModule cache_module modules/mod_cache.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
LoadModule cgi_module modules/mod_cgi.so
#LoadModule charset_lite_module modules/mod_charset_lite.so
#LoadModule dav_module modules/mod_dav.so
#LoadModule dav_fs_module modules/mod_dav_fs.so
#LoadModule dav_lock_module modules/mod_dav_lock.so
#LoadModule dbd_module modules/mod_dbd.so
#LoadModule deflate_module modules/mod_deflate.so
LoadModule dir_module modules/mod_dir.so
#LoadModule disk_cache_module modules/mod_disk_cache.so
#LoadModule dumpio_module modules/mod_dumpio.so
LoadModule env_module modules/mod_env.so
#LoadModule expires_module modules/mod_expires.so
#LoadModule ext_filter_module modules/mod_ext_filter.so
#LoadModule file_cache_module modules/mod_file_cache.so
#LoadModule filter_module modules/mod_filter.so
#LoadModule headers_module modules/mod_headers.so
#LoadModule ident_module modules/mod_ident.so
#LoadModule imagemap_module modules/mod_imagemap.so
LoadModule include_module modules/mod_include.so
#LoadModule info_module modules/mod_info.so
LoadModule isapi_module modules/mod_isapi.so
#LoadModule ldap_module modules/mod_ldap.so
#LoadModule logio_module modules/mod_logio.so
LoadModule log_config_module modules/mod_log_config.so
#LoadModule log_forensic_module modules/mod_log_forensic.so
#LoadModule mem_cache_module modules/mod_mem_cache.so
LoadModule mime_module modules/mod_mime.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
LoadModule negotiation_module modules/mod_negotiation.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
#LoadModule proxy_connect_module modules/mod_proxy_connect.so
#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
#LoadModule proxy_http_module modules/mod_proxy_http.so
#LoadModule proxy_scgi_module modules/mod_proxy_scgi.so
#LoadModule reqtimeout_module modules/mod_reqtimeout.so
#LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
#LoadModule speling_module modules/mod_speling.so
#LoadModule ssl_module modules/mod_ssl.so
#LoadModule status_module modules/mod_status.so
#LoadModule substitute_module modules/mod_substitute.so
#LoadModule unique_id_module modules/mod_unique_id.so
#LoadModule userdir_module modules/mod_userdir.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule version_module modules/mod_version.so
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
LoadModule php5_module "c:/Program Files/php/php5apache2_2.dll" 
<IfModule !mpm_netware_module>
<IfModule !mpm_winnt_module>
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.  
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User daemon
Group daemon
</IfModule>
</IfModule>
# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# <VirtualHost> definition.  These values also provide defaults for
# any <VirtualHost> containers you may define later in the file.
#
# All of these directives may appear inside <VirtualHost> containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#
#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [email protected]
#
ServerAdmin [email protected]
#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName www.somenet.com:80
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories). 
#
# First, we configure the "default" to be a very restrictive set of 
# features.  
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs">
    #
    # 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.2/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.
    #
    Order allow,deny
    Allow from all
</Directory>
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.html index.php
</IfModule>
#
# The following lines prevent .htaccess and .htpasswd files from being 
# viewed by Web clients. 
#
<FilesMatch "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
</FilesMatch>
#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog "logs/error.log"
#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn
<IfModule log_config_module>
    #
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    #
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
      # You need to enable mod_logio.c to use %I and %O
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    #
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here.  Contrariwise, if you *do*
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and *not* in this file.
    #
    CustomLog "logs/access.log" common
    #
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #
    #CustomLog "logs/access.log" combined
</IfModule>
<IfModule alias_module>
    #
    # Redirect: Allows you to tell clients about documents that used to 
    # exist in your server's namespace, but do not anymore. The client 
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.somenet.com/bar
    #
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    #
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL.  You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    #
    # ScriptAlias: This controls which directories contain server scripts. 
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client.  The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    #
    ScriptAlias /cgi-bin/ "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/cgi-bin/"
</IfModule>
<IfModule cgid_module>
    #
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #
    #Scriptsock logs/cgisock
</IfModule>
#
# "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>
#
# DefaultType: the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain
<IfModule mime_module>
    #
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    #
    TypesConfig conf/mime.types
    #
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #
    #AddType application/x-gzip .tgz
    #
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    #
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    #
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    #
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    #
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    #
    #AddHandler cgi-script .cgi
    # For type maps (negotiated resources):
    #AddHandler type-map var
    #
    # Filters allow you to process content before it is sent to the client.
    #
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    #
    #AddType text/html .shtml
    #AddOutputFilter INCLUDES .shtml
    AddType application/x-httpd-php .php 
</IfModule>
#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type.  The MIMEMagicFile
# directive tells the module where the hint definitions are located.
#
#MIMEMagicFile conf/magic
#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.somenet.com/subscription_info.html
#
#
# MaxRanges: Maximum number of Ranges in a request before
# returning the entire resource, or one of the special
# values 'default', 'none' or 'unlimited'.
# Default setting is to accept 200 Ranges.
#MaxRanges unlimited
#
# EnableMMAP and EnableSendfile: On systems that support it, 
# memory-mapping or the sendfile syscall is used to deliver
# files.  This usually improves server performance, but must
# be turned off when serving from networked-mounted 
# filesystems or if support for these functions is otherwise
# broken on your system.
#
#EnableMMAP off
#EnableSendfile off
# Supplemental configuration
#
# The configuration files in the conf/extra/ directory can be 
# included to add extra features or to modify the default configuration of 
# the server, or you may simply copy their contents here and change as 
# necessary.
# Server-pool management (MPM specific)
#Include conf/extra/httpd-mpm.conf
# Multi-language error messages
#Include conf/extra/httpd-multilang-errordoc.conf
# Fancy directory listings
#Include conf/extra/httpd-autoindex.conf
# Language settings
#Include conf/extra/httpd-languages.conf
# User home directories
#Include conf/extra/httpd-userdir.conf
# Real-time info on requests and configuration
#Include conf/extra/httpd-info.conf
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
# Local access to the Apache HTTP Server Manual
#Include conf/extra/httpd-manual.conf
# Distributed authoring and versioning (WebDAV)
#Include conf/extra/httpd-dav.conf
# Various default settings
#Include conf/extra/httpd-default.conf
# Secure (SSL/TLS) connections
#Include conf/extra/httpd-ssl.conf
#
# Note: The following must must be present to support
#       starting without SSL on platforms with no /dev/random equivalent
#       but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
PHPIniDir "c:/Program Files/php" 

en vhosts.conf:

NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1:80>
    DocumentRoot i:/projects/webserver/__tools/phpmyadmin/
    ServerName dbadmin.tools
</VirtualHost>

Antwoord 1, autoriteit 100%

Update oktober 2016

4 jaar geleden, aangezien dit antwoord door velen als referentie wordt gebruikt, en hoewel ik in deze jaren veel heb geleerd vanuit het oogpunt van beveiliging,
Ik voel dat ik verantwoordelijk ben om enkele belangrijke opmerkingen te verduidelijken, en ik heb mijn antwoord dienovereenkomstig bijgewerkt.

Het oorspronkelijke antwoord is correct, maar niet veilig voor sommige productieomgevingen,
daarnaast wil ik graag enkele problemen uitleggen waar u mogelijk tegenaan loopt bij het instellen van uw omgeving.

Als u op zoek bent naar een snelle oplossing en VEILIGHEID GEEN ZAAK IS, d.w.z. ontwikkeling env, sla dan het oorspronkelijke antwoord over en lees het

Veel scenario’s kunnen leiden tot 403 Forbidden:


A. Directory-indexen (van mod_autoindex.c)

Als u een map opent en er is geen standaardbestand in deze map gevonden
ENApache Options Indexesis niet ingeschakeld voor deze map.

A.1. DirectoryIndexoptie voorbeeld

DirectoryIndex index.html default.php welcome.php

A.2. Options Indexesoptie

Indien ingesteld, zal apache de inhoud van de map weergeven als er geen standaardbestand is gevonden (van de bovenstaande 👆🏻 optie)

Als aan geen van de bovenstaande voorwaarden is voldaan

Je ontvangt een 403 Forbidden

Aanbevelingen

  • Je mag geen directory-vermelding toestaan tenzij ECHTdat nodig is.
  • Beperk de standaardindex DirectoryIndextot het minimum.
  • Als u wijzigingen wilt aanbrengen, beperk de wijziging dan ALLEEN tot de benodigde directory, gebruik bijvoorbeeld .htaccess-bestanden, of plaats uw wijziging in de <Directory /my/directory>richtlijn

B. deny,allowrichtlijnen (Apache 2.2)

Genoemd door @Radu, @Simon A. Eugster in de reacties
Uw verzoek wordt door die richtlijnen afgewezen, op de zwarte lijst of op de witte lijst geplaatst.

Ik zal geen volledige uitleg plaatsen, maar ik denk dat enkele voorbeelden je kunnen helpen begrijpen,
in het kort onthoud deze regel:

INDIEN BEIDE OVEREENGEKOMEN, IS DE LAATSTE RICHTLIJN DEGENE DIE ZAL WINNEN

Order allow,deny

Deny wint als beide richtlijnen overeenkomen (zelfs als er een allow-instructie is geschreven na de denyin de conf)

Order deny,allow

Allow zal winnen indien geëvenaard door beide richtlijnen

Voorbeeld 1

Order allow,deny
Allow from localhost mydomain.com

Alleen localhost en *.mijndomein.com hebben hier toegang toe, alle andere hosts worden geweigerd

Voorbeeld 2

Order allow,deny
Deny from evil.com
Allow from safe.evil.com # <-- has no effect since this will be evaluated first

Alle verzoeken worden geweigerd, de laatste regel kan je misleiden, maar onthoud dat als deze wordt gecombineerd met zowel de laatste overwinningsregel (hier is weigeren de laatste), hetzelfde als geschreven:

Order allow,deny
Allow from safe.evil.com
Deny from evil.com # <-- will override the previous one 

Voorbeeld 4

Order deny,allow
Allow from site.com
Deny from untrusted.site.com # <-- has no effect since this will be matched by the above `Allow` directive

Verzoeken worden geaccepteerd van alle hosts

Voorbeeld 4: typisch voor openbare sites (toestaan, tenzij op de zwarte lijst)

Order allow,deny
Allow from all
Deny from hacker1.com
Deny from hacker2.com

Voorbeeld 5: typisch voor intranet en beveiligde sites (weigeren tenzij op de witte lijst gezet)

Order deny,allow
Deny from all
Allow from mypc.localdomain
Allow from managment.localdomain

C. Requirerichtlijn (Apache 2.4)

Apache 2.4 gebruikt een nieuwe module genaamd mod_authz_host

Require all granted=> Alle verzoeken toestaan

Require all denied=> Alle verzoeken afwijzen

Require host safe.com=> Alleen van safe.com zijn toegestaan


D. Bestandsrechten

Een ding dat de meeste mensen verkeerd doen, is het configureren van bestandsrechten,

De GOUDEN REGEL is

BEGINT ZONDER TOESTEMMING EN TOEVOEGEN VOLGENS UW BEHOEFTE

In Linux:

  • Mappen moeten de machtiging Executehebben

  • Bestanden moeten de machtiging Readhebben

  • JA, je hebt gelijk VOEG GEEN Executetoestemming toe voor bestanden

ik gebruik dit script bijvoorbeeld om de maprechten in te stellen

# setting permissions for /var/www/mysite.com
# read permission ONLY for the owner 
chmod -R /var/www/mysite.com 400 
# add execute for folders only
find /var/www/mysite.com -type d -exec chmod -R u+x {} \;
# allow file uploads 
chmod -R /var/www/mysite.com/public/uploads u+w
# allow log writing to this folder
chmod -R /var/www/mysite.com/logs/ 

Ik heb deze code als voorbeeld geplaatst, de instellingen kunnen in andere situaties verschillen



Oorspronkelijk antwoord

Ik had hetzelfde probleem, maar ik heb het opgelost door de options-instructie in te stellen in de globale directory-instelling in de httpd.confof in het specifieke directoryblok in httpd-vhosts.conf:

Options Indexes FollowSymLinks Includes ExecCGI

Standaard zijn uw algemene directory-instellingen (httpd.conf line ~188):

<Directory />
    Options FollowSymLinks
    AllowOverride All
    Order deny,allow
    Allow from all
</Directory>

stel de opties in op:
Options Indexes FollowSymLinks Includes ExecCGI

Ten slotte zou het er als volgt uit moeten zien:

<Directory />
    #Options FollowSymLinks
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Order deny,allow
    Allow from all
</Directory>

Probeer ook de regels Order deny,allowen Allow from allte wijzigen door Require all grantedvereisen.

Bijlage

Directory indexeert broncode (sommige code verwijderd voor beknoptheid)

if (allow_opts & OPT_INDEXES) {
     return index_directory(r, d);
} else {
        const char *index_names = apr_table_get(r->notes, "dir-index-names");
        ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01276)
                      "Cannot serve directory %s: No matching DirectoryIndex (%s) found, and "
                      "server-generated directory index forbidden by "
                      "Options directive",
                       r->filename,
                       index_names ? index_names : "none");
        return HTTP_FORBIDDEN;
    }

Antwoord 2, autoriteit 28%

Ik begrijp dat dit probleem is opgelost, maar ik heb dit probleem toevallig zelf opgelost.

De oorzaak van

Verboden U heeft geen toestemming voor toegang tot / op deze server

is eigenlijk de standaardconfiguratie voor een apache-map in httpd.conf.

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories). 
#
# First, we configure the "default" to be a very restrictive set of 
# features.  
#
<Directory "/">
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all          # the cause of permission denied
</Directory>

Het eenvoudigweg wijzigen van Deny from allin Allow from allzou het toestemmingsprobleem moeten oplossen.

Als alternatief zou een betere benadering zijn om individuele directory-machtigingen op virtualhost-configuratie op te geven.

<VirtualHost *:80>
    ....
    # Set access permission
    <Directory "/path/to/docroot">
        Allow from all
    </Directory>
    ....
</VirtualHost>

Vanaf Apache-2.4wordt toegangscontrole echter gedaan met behulp van de nieuwe module mod_authz_host(Upgraden naar 2.4 van 2.2). Daarom moet de nieuwe Require-richtlijn worden gebruikt.

<VirtualHost *:80>
    ....
    # Set access permission
    <Directory "/path/to/docroot">
        Require all granted
    </Directory>
    ....
</VirtualHost>

Antwoord 3, autoriteit 20%

Een veelvoorkomend probleem voor directory’s die buiten de standaard /var/www/ worden gehost, is dat de Apache-gebruiker niet alleen machtigingen nodig heeft voor de directory en subdirectories waar de site wordt gehost. Apache vereist machtigingen voor alle mappen tot aan de root van het bestandssysteem waar de site wordt gehost. Apache krijgt automatisch permissies toegewezen aan /var/www/ wanneer het is geïnstalleerd, dus als je hostdirectory daar direct onder staat, is dit niet op jou van toepassing. Bewerken: Daybreaker heeft gemeld dat zijn Apache is geïnstalleerd zonder de juiste toegangsrechten tot de standaardmap.

U heeft bijvoorbeeld een ontwikkelmachine en de directory van uw site is:

/username/home/Dropbox/myamazingsite/

Je denkt misschien dat je weg kunt komen met:

chgrp -R www-data /username/home/Dropbox/myamazingsite/
chmod -R 2750 /username/home/Dropbox/myamazingsite/

omdat dit Apache permissies geeft om toegang te krijgen tot de directory van uw site? Nou, dat klopt, maar het is niet voldoende. Apache vereist machtigingen helemaal naar boven in de directorystructuur, dus wat u moet doen is:

chgrp -R www-data /username/
chmod -R 2750 /username/

Natuurlijk zou ik niet aanraden om Apache op een productieserver toegang te geven tot een volledige directorystructuur zonder te analyseren wat er in die directorystructuur staat. Voor productie kunt u het beste de standaarddirectory of een andere directorystructuur gebruiken die alleen bedoeld is voor het bewaren van webassets.

Edit2: zoals u/chimeraha opmerkte, als u niet zeker weet wat u met de machtigingen doet, kunt u het beste de directory van uw site uit uw homedirectory verwijderen om te voorkomen dat u mogelijk wordt buitengesloten van uw thuismap.


Antwoord 4, autoriteit 9%

Sommige configuratieparameters zijn gewijzigd in Apache 2.4. Ik had een soortgelijk probleem toen ik een Zend Framework 2applicatie aan het opzetten was. Na wat onderzoek is hier de oplossing:

Onjuiste configuratie

<VirtualHost *:80>
    ServerName zf2-tutorial.localhost
    DocumentRoot /path/to/zf2-tutorial/public
    SetEnv APPLICATION_ENV "development"
    <Directory /path/to/zf2-tutorial/public>
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny #<-- 2.2 config
        Allow from all #<-- 2.2 config
    </Directory>
</VirtualHost>

Correcte configuratie

<VirtualHost *:80>
    ServerName zf2-tutorial.localhost
    DocumentRoot /path/to/zf2-tutorial/public
    SetEnv APPLICATION_ENV "development"
    <Directory /path/to/zf2-tutorial/public>
        DirectoryIndex index.php
        AllowOverride All
        Require all granted #<-- 2.4 New configuration
    </Directory>
</VirtualHost>

Als u van plan bent te migreren van Apache 2.2 naar 2.4, is hier een goede referentie: http://httpd .apache.org/docs/2.4/upgrading.html


Antwoord 5, autoriteit 6%

Met Apache 2.2

Order Deny,Allow
Allow from all

Met Apache 2.4

Require all granted

Van http://httpd.apache.org/docs/2.4/en/upgrading.html


Antwoord 6, autoriteit 4%

Op Ubuntu 14.04met Apache 2.4deed ik het volgende:

Voeg het volgende toe aan het bestand, apache2.conf(onder /etc/apache2):

<Directory /home/rocky/code/documentroot/>
  Options Indexes FollowSymLinks
  AllowOverride None
  Require all granted
</Directory>

en laad de server opnieuw:

sudo service apache2 reload

Bewerken: dit werkt ook op OS X Yosemite met Apache 2.4. De allerbelangrijkste regel is

Alles toekennen vereisen


Antwoord 7, autoriteit 3%

Als je een WAMP-server gebruikt, probeer dan dit:

  • Klik één keer op het WAMP-serverpictogram op de taakbalk

  • Selecteer de optie online zetten

  • Uw server wordt automatisch opnieuw opgestart

  • Probeer vervolgens toegang te krijgen tot uw lokale website


Antwoord 8, autoriteit 3%

Als je CentOS gebruikt met SELinuxProbeer:

sudo restorecon -r /var/www/html

Zie meer: https://www.centos.org/forums/viewtopic.php? t=6834#p31548


Antwoord 9, autoriteit 3%

Ik heb mijn probleem opgelost door mijn gebruiker toe te voegen aan httpd.conf.

# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
#User daemon
User my_username
Group daemon

Antwoord 10, autoriteit 2%

Dit artikel Virtuele hosts maken op Apache 2.2helpt me (punt 9) permissies naar boven virtuele hosts-map.

Ik voeg gewoon deze regels toe aan mijn vhosts.conf-bestand:

<Directory I:/projects/webserver>
    Order Deny,Allow
    Allow from all
</Directory>

Antwoord 11, autoriteit 2%

Ik kreeg dezelfde foutmelding en kon het probleem al tijden niet achterhalen. Als je toevallig een Linux-distributie gebruikt die SELinuxbevat, zoals CentOS, moet je ervoor zorgen dat de SELinux-machtigingen correct zijn ingesteld voor de rootbestanden van je document, anders krijg je deze foutmelding. Dit is een geheel andere set machtigingen dan de standaard bestandssysteemmachtigingen.

Ik gebruikte toevallig de tutorial Apache en SELinux, maar er lijken er genoeg te zijn als je eenmaal weet waar je op moet letten.


Antwoord 12

Als u MAMP Pro gebruikt, kunt u dit oplossen door het selectievakje Indexesonder het tabblad HostsExtendedaan te vinken.

In MAMP Pro v3.0.3 ziet dat er zo uit:
voer hier de afbeeldingsbeschrijving in


Antwoord 13

Er is een andere manier om dit probleem op te lossen. Laten we zeggen dat u toegang wilt tot de map “subphp” die bestaat op /var/www/html/subphp, en dat u deze wilt openen met 127.0.0.1/subphpen u krijgt de volgende foutmelding:

Je hebt geen toestemming om /subphp/ op deze server te openen.

Verander vervolgens de mapmachtigingen van “Geen” in “toegang tot bestanden”. Een opdrachtregelgebruiker kan de opdracht chmodgebruiken om de toestemming te wijzigen.


Antwoord 14

Ik had hetzelfde probleem, maar door het feit dat ik het pad op apache veranderde naar een map buiten var/www, begon ik problemen te krijgen.

Ik heb het opgelost door een symbolische link te maken in var/www/html > home/dev/project die de truc leek te doen, zonder enige toestemming te hoeven wijzigen…


Antwoord 15

Ik gebruik Mac OS X, in mijn geval vergeet ik php in apache in te schakelen, het enige wat ik hoef te doen is een regel verwijderen uit /etc/apache2/httpd.conf:

LoadModule php5_module libexec/apache2/libphp5.so

ref ditartikel voor details .


Antwoord 16

(In Windows en Apache 2.2.x)

De “Verboden”-fout is ook het resultaat van het niet hebben van virtuele hosts gedefinieerd.

Zoals opgemerkt door Julien, als je van plan bent om virtuele hosts.confte gebruiken, ga dan naar het httpd-bestand en verwijder de commentaar op de volgende regel:

#Include conf/extra/httpd-vhosts.conf

Voeg vervolgens uw virtuele hosts-definities toe in conf/extra/httpd-vhosts.confen start Apache opnieuw.


Antwoord 17

Ik kwam dit probleem tegen en mijn oplossing was dat www-data niet de juiste mappen bezat, en in plaats daarvan stelde ik het in voor een van de gebruikers om het te bezitten. (Ik probeerde een beetje fantasie, maar verkeerde trucs om ftp goed te laten spelen.)

Na het hardlopen:

chown -R www-data:www-data /var/www/html

De machine begon weer met het verstrekken van gegevens. U kunt zien wie momenteel de eigenaar is van de map door middel van

ls -l /var/www/html

Antwoord 18

Deze oplossing staat niet iedereen toe

Ik wil alleen mijn openbare directory www wijzigen en deze openen vanaf mijn pc en mobiel verbonden via wifi. Ik heb Ubuntu 16.04.

  1. Dus, eerst heb ik /etc/apache2/sites-enabled/000-default.conf aangepast
    en ik veranderde de regel DocumentRoot /var/www/html
    voor mijn nieuwe openbare directory
    DocumentRoot “/media/data/XAMPP/htdocs”

  2. Vervolgens wijzigde ik /etc/apache2/apache2.conf, en ik zette de rechten voor localhost, en mijn mobiel, deze keer gebruikte ik het IP-adres, ik weet dat het niet helemaal veilig is, maar het is OK voor mijn doeleinden.

    <Directory/>
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from localhost 10.42.0.11
    </Directory>
    

Antwoord 19

Probeer dit en voeg niets toe Order allow,denyen anderen:

AddHandler cgi-script .cgi .py 
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
    AllowOverride None
    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
    Require all granted
    Allow from all
</Directory>

 

sudo a2enmod cgi
sudo service apache2 restart

Antwoord 20

   I changed 
    Order Deny,Allow
    Deny From All      in .htaccess to   " Require all denied "    and restarted apache but it did not help.

Het pad voor apache2.conf in ubuntu is /etc/apache2/apache.conf

Vervolgens heb ik de volgende regels toegevoegd in apache2.conf en dan werkt mijn map prima

   <Directory /path of required folder>
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
       </Directory>
   and run  " Sudo service apache2 restart " 

Antwoord 21

Ik weet dat deze vraag al verschillende antwoorden heeft, maar ik denk dat er een heel subtiel aspect is dat, hoewel genoemd, niet genoeg is benadrukt in de vorige antwoorden.

Laten we, voordat we de Apache-configuratie of de machtigingen van uw bestanden controleren, een eenvoudigere controle uitvoeren om er zeker van te zijn dat elkvan de mappen die het volledige pad vormen naar het bestand dat u wilt openen (bijv. de index. php-bestand in de root van uw document) is niet alleen leesbaar, maar ook uitvoerbaardoor de webservergebruiker.

Stel bijvoorbeeld dat het pad naar de hoofdmap van uw documenten “/var/www/html” is. U moet ervoor zorgen dat alle mappen “var”, “www” en “html” (leesbaar en) uitvoerbaar zijn voor de webservergebruiker. In mijn geval (Ubuntu 16.04) had ik per ongeluk de vlag “x” naar de groep “others” uit de map “html” verwijderd, zodat de rechten er als volgt uitzagen:

drwxr-xr-- 15 root root 4096 Jun 11 16:40 html

Zoals je kunt zien had de webservergebruiker (voor wie de “others”-rechten in dit geval van toepassing zijn) geen execute-toegang tot de “html”-directory, en dit was precies de root van het probleem. Na het uitgeven van een:

chmod o+x html

opdracht, het probleem is verholpen!

Voordat ik op deze manier oploste, had ik letterlijk elke andere suggestie in deze thread geprobeerd, en aangezien de suggestie werd begraven in een opmerking die ik bijna bij toeval vond, denk ik dat het nuttig kan zijn om het hier te benadrukken en uit te breiden.

p>


Antwoord 22

Ik had hetzelfde probleem alleen voor een specifieke controller – wat echt raar was. Ik had een map in de hoofdmap van de CI-map die dezelfde naam had als de controller die ik probeerde te openen… Daarom stuurde CI het verzoek naar deze map in plaats van naar de controller zelf.

Na het verwijderen van deze map (die er een beetje per ongeluk was), werkte het allemaal prima.

Voor de duidelijkheid, hier is hoe het eruit zag:

/ci/controller/register.php
/ci/register/

Ik moest /ci/register/verwijderen.


Antwoord 23

Controleer precies waar u uw bestanden plaatst, nest ze niet in de map Documenten.

Ik heb bijvoorbeeld de fout gemaakt om mijn code in de map Documenten te plaatsen, omdat dit niet gaat werken omdat Documenten expliciet alleen beschikbaar is voor JOU en niet voor APACHE. Probeer het een map omhoog te verplaatsen en u ziet dit probleem mogelijk niet.

Map verplaatsen van:

/Users/YOURUSERNAME/Documenten/code

Naar hier:
/Gebruikers/UW GEBRUIKERSNAAM/code


Antwoord 24

Om nog een bijdrage te leveren terwijl ik ook naar dit probleem rende:

Ik had een VirtualHost geconfigureerd die ik niet wilde. Ik heb commentaar gegeven op de regel waar de include voor de vhost plaatsvond, en het werkte.


Antwoord 25

Je kunt het bestand youralias.confals volgt wijzigen:

Alias /Quiz/ "h:/MyServer/Quiz/" 
 <Directory "h:/MyServer/Quiz/">
   Options Indexes FollowSymLinks
   AllowOverride all
   <IfDefine APACHE24>
     Require local
   </IfDefine>
   <IfDefine !APACHE24>
    Order Deny,Allow
    Deny from all
    Allow from localhost ::1 127.0.0.1
   </IfDefine>
 </Directory>

Antwoord 26

Onthoud dat het juiste bestand dat in deze situatie moet worden geconfigureerd, niet de httpd.conf is in de phpMyAdmin-alias, maar in bin/apache/your_version/conf/httpd.conf.

Zoek naar de volgende regel:

DocumentRoot "c:/wamp/www/"
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>

Zorg ervoor dat het is ingesteld op Allow from all

Als dat niet het geval is, werkt phpMyAdmin misschien zelfs, maar niet je root en andere mappen eronder. Vergeet ook niet om WAMP opnieuw op te starten en vervolgens online te zetten…

Dit loste mijn hoofdpijn op.


Antwoord 27

Ik had dit probleem toen ik SSHFSgebruikte om de bestanden in mijn VirtualBox-gast van mijn lokale bestandssysteem voordat u een docker-build uitvoert. Uiteindelijk was de “fix” om alle bestanden naar de VirtualBox-instantie te kopiëren in plaats van vanuit de SSHFS-mount te bouwen, en vervolgens de build vanaf daar uit te voeren.


Antwoord 28

WERKmethode (tenzij er geen ander probleem is)

Standaard beperkt Apache de toegang vanaf IPv4(algemeen extern IP-adres) niet )

Wat beperkt is, zijn de commando’s gegeven in ‘httpd.conf‘.

Alles vervangen

<Directory />
    AllowOverride none
    Require all denied
</Directory>

met

<Directory />
    AllowOverride none
    # Require all denied
</Directory>

vandaar het verwijderen van alle beperkingen die aan Apachezijn gegeven.

Vervang Require localdoor Require all grantedvoor de directory C:/wamp/www/.

<Directory "c:/wamp/www/">
    Options Indexes FollowSymLinks
    AllowOverride all
    Require all granted
    # Require local
</Directory>

Antwoord 29

Vergeet na het wijzigen van de configuratiebestanden niet om Restart All Services.

Ik heb er drie uur van mijn tijd aan verspild.


Antwoord 30

Dit is behoorlijk belachelijk, maar ik kreeg de 403 Forbidden toen het bestand dat ik probeerde te downloaden niet op het bestandssysteem stond. De apache-fout is in dit geval niet erg nauwkeurig en het hele ding werkte nadat ik het bestand eenvoudig had geplaatst waar het moest zijn.

Other episodes