त्रुटि संदेश "निषिद्ध है आपको इस सर्वर पर पहुंचने की अनुमति नहीं है" [बंद]


520

मैंने अपने अपाचे को खुद से कॉन्फ़िगर किया है और एक वर्चुअल होस्ट पर phpMyAdmin को लोड करने की कोशिश की है , लेकिन मुझे प्राप्त हुआ है:

403 निषिद्ध आपके पास इस सर्वर तक पहुँचने की अनुमति नहीं है

माई 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. admin@your-domain.com
#
ServerAdmin webmaster@somenet.com

#
# 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" 

और vhosts.conf:

NameVirtualHost 127.0.0.1:80

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

Http फ़ोल्डर के अधिकार क्या हैं और इसका मालिक कौन है?
ओलिवर

यह विंडोज 7 के तहत मेरी स्थानीय मशीन पर है, और आपको किस फ़ोल्डर का मतलब है? मैं: / परियोजनाओं / वेबसर्वर / __ उपकरण / phpmyadmin /?
Dmytro Zarezenko

हाँ अपाचे उपयोगकर्ता डेमॉन के रूप में चलाता है। क्या इस उपयोगकर्ता के पास फ़ाइलों को पढ़ने का अधिकार है?
ओलिवर

हां, मैं प्रशासक हूं
Dmytro Zarezenko

4
जाँच करें कि क्या आपके पास ऐसी कोई .htaccessफ़ाइल नहीं है जो पहुँच (निर्देशिका में) को अस्वीकार करने से इंकार कर रही है
उज्जवल सिंह

जवाबों:


662

अद्यतन अक्टूबर 2016

4 साल पहले, क्योंकि इस उत्तर का उपयोग कई संदर्भों के रूप में किया जाता है, और जब मैंने इन वर्षों के दौरान सुरक्षा के दृष्टिकोण से बहुत कुछ सीखा है, तो मुझे लगता है कि मैं कुछ महत्वपूर्ण नोटों को स्पष्ट करने के लिए जिम्मेदार हूं, और मैंने अपने उत्तर को तदनुसार अपडेट किया है।

मूल उत्तर सही है लेकिन कुछ उत्पादन वातावरणों के लिए सुरक्षित नहीं है, इसके अलावा मैं कुछ मुद्दों की व्याख्या करना चाहूंगा जिन्हें आप अपने पर्यावरण को स्थापित करते समय गिर सकते हैं।

यदि आप एक त्वरित समाधान की तलाश कर रहे हैं और सुरक्षा एक तत्व नहीं है, अर्थात विकास एनवी, को छोड़ दें और मूल उत्तर को पढ़ें

कई परिदृश्यों में 403 निषिद्ध हो सकते हैं :


निर्देशिका निर्देशिका ( mod_autoindex.c) से

यदि आप एक निर्देशिका का उपयोग और कोई डिफ़ॉल्ट इस निर्देशिका में पाया फ़ाइल नहीं है जब और अपाचे Options Indexesइस निर्देशिका के लिए सक्षम नहीं है।

A.1। DirectoryIndexविकल्प उदाहरण

DirectoryIndex index.html default.php welcome.php

.2। Options Indexesविकल्प

यदि सेट किया गया है, तो अपाचे निर्देशिका सामग्री को सूचीबद्ध करेगा यदि कोई डिफ़ॉल्ट फ़ाइल नहीं मिली (उपरोक्त will विकल्प से)

यदि उपरोक्त शर्तों में से कोई भी संतुष्ट नहीं है

आपको 403 निषिद्ध प्राप्त होगा

अनुशंसाएँ

  • जब तक वास्तव में ज़रूरत न हो, आपको निर्देशिका सूचीकरण की अनुमति नहीं देनी चाहिए ।
  • डिफ़ॉल्ट इंडेक्स DirectoryIndexको न्यूनतम तक सीमित करें ।
  • यदि आप संशोधित करना चाहते हैं, तो आवश्यक निर्देशिका में संशोधन प्रतिबंधित करें, उदाहरण के लिए, .htaccessफ़ाइलों का उपयोग करें, या <Directory /my/directory>निर्देश के अंदर अपना संशोधन करें

बी deny,allowनिर्देश (Apache 2.2)

@Radu, @Simon A. Eugster द्वारा टिप्पणियों में उल्लेख किया गया है आप अनुरोधों को अस्वीकार करते हैं, उन निर्देशों द्वारा ब्लैक लिस्टेड या श्वेत सूची में रखते हैं।

मैं पूर्ण विवरण पोस्ट नहीं करूंगा, लेकिन मुझे लगता है कि कुछ उदाहरण आपको इस नियम को समझने में मदद कर सकते हैं:

अगर, दोनों को मिला दिया जाए, तो सबसे पहले एक व्यक्ति जीत जाएगा

Order allow,deny

यदि दोनों निर्देशों द्वारा मिलान किया जाता है तो भी जीत होगी (भले ही allowनिर्देश के बाद निर्देश लिखा गया हो deny)

Order deny,allow

यदि दोनों निर्देशों द्वारा मिलान किया जाता है तो जीतने की अनुमति होगी

उदाहरण 1

Order allow,deny
Allow from localhost mydomain.com

केवल लोकलहोस्ट और * .mydomain.com ही इस तक पहुँच सकते हैं, बाकी सभी मेजबानों को मना कर दिया जाता है

उदाहरण 2

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

सभी अनुरोधों से इनकार कर दिया जाता है, अंतिम पंक्ति आपको धोखा दे सकती है, लेकिन याद रखें कि यदि दोनों अंतिम जीत नियम से मेल खाते हैं (यहां डेनी अंतिम है), जैसा कि लिखा गया है:

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

उदाहरण 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

सभी मेजबानों से अनुरोध स्वीकार किए जाते हैं

उदाहरण 4: सार्वजनिक साइटों के लिए विशिष्ट (जब तक ब्लैकलिस्ट नहीं किया जाता है)

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

उदाहरण 5: इंट्रानेट और सुरक्षित साइटों के लिए विशिष्ट (इनकार जब तक कि श्वेतसूची में न हो)

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

सी। Requireनिर्देश (Apache 2.4)

Apache 2.4 नामक एक नए मॉड्यूल का उपयोग करता है mod_authz_host

Require all granted => सभी अनुरोधों की अनुमति दें

Require all denied => सभी अनुरोधों को अस्वीकार करें

Require host safe.com => केवल safe.com से ही अनुमति दी जाती है


डी। फ़ाइलें अनुमतियाँ

एक चीज जो ज्यादातर लोग गलत करते हैं वह है फाइल अनुमतियों को कॉन्फ़िगर करना,

स्वर्ण रेखा है

कोई अनुमति के साथ सितारे और अपनी जरूरत के अनुसार जोड़ें

लिनक्स में:

  • निर्देशिकाओं की Executeअनुमति होनी चाहिए

  • फाइलों की Readअनुमति होनी चाहिए

  • हाँ, आप सही हैं Executeफ़ाइलों के लिए ADD अनुमति नहीं है

उदाहरण के लिए, मैं इस स्क्रिप्ट का उपयोग फ़ोल्डर्स अनुमतियों को सेटअप करने के लिए करता हूं

# 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/ 

मैंने इस कोड को एक उदाहरण के रूप में पोस्ट किया है, सेटअप अन्य स्थितियों में भिन्न हो सकता है



मूल उत्तर

मुझे एक ही समस्या का सामना करना पड़ा, लेकिन मैंने httpd.conf या httpd-vhosts.conf में विशिष्ट निर्देशिका ब्लॉक में वैश्विक निर्देशिका सेटिंग में विकल्प निर्देश सेट करके इसे हल किया :

Options Indexes FollowSymLinks Includes ExecCGI

डिफ़ॉल्ट रूप से, आपकी वैश्विक निर्देशिका सेटिंग है (httpd.conf line ~188):

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

इसके लिए विकल्प सेट करें: Options Indexes FollowSymLinks Includes ExecCGI

अंत में, यह दिखना चाहिए:

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

बदलने की भी कोशिश करो Order deny,allowऔरAllow from all लाइनों कीRequire all granted

अनुबंध

डायरेक्टरी इंडेक्स सोर्स कोड (संक्षिप्तता के लिए कुछ कोड हटाएं)

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;
    }

41
साथ ही, किसी को फ़ोल्डर की अनुमतियों की जांच करनी चाहिए ताकि अपाचे प्रक्रिया के मालिक के पास वर्चुअल होस्ट के लिए निर्दिष्ट पथ को पढ़ने / निष्पादित करने की अनुमति हो। विंडोज़ पर ऐसा कम ही एक समस्या हो सकती है लेकिन लिनक्स पर इसके बारे में 403 एक अधिक लगातार कारण हो सकता है
राडू

76
मैं अतिरिक्त परिवर्तन करना पड़ा Order deny,allow, Allow from allकरने के लिए Require all grantedअपाचे 2.4 पर। यहां देखें: httpd.apache.org/docs/2.4/upmission.html
साइमन ए। यूगस्टर

52
जोड़ने के बाद ही Require all grantedकाम किया
pylover

1
क्या @pylover नहीं और मेरे विन्यास ... (और इस में से एक पुरुष को भी गंदगी stackoverflow.com/questions/19263135/... )
स्टीफ़न Paquet

6
यह जवाब बहुत गलत है ! तुम कभी नहीं हैकर्स Allow from allके <Directory />खंड में httpd.confएक हैकर खुश
RiggsFolly

187

मैं समझता हूं कि यह मुद्दा हल हो गया है लेकिन मैं अपने दम पर इस समस्या को हल करने के लिए हुआ।

उसका कारण है

निषिद्ध आपके पास इस सर्वर तक पहुंचने की अनुमति नहीं है

वास्तव में एक अपाचे निर्देशिका के लिए डिफ़ॉल्ट विन्यास है 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>

बस Deny from allकरने के लिए बदल रहा हैAllow from all अनुमति समस्या को हल चाहिए।

वैकल्पिक रूप से, वर्चुअलहोस्ट कॉन्फ़िगरेशन पर व्यक्तिगत निर्देशिका अनुमतियों को निर्दिष्ट करने के लिए एक बेहतर तरीका होगा।

<VirtualHost *:80>
    ....

    # Set access permission
    <Directory "/path/to/docroot">
        Allow from all
    </Directory>

    ....
</VirtualHost>

अपाचे-2.4 के रूप में , हालांकि, नए मॉड्यूल का उपयोग करके अभिगम नियंत्रण किया जाता है mod_authz_host( 2.2 से 2.4 तक उन्नयन )। नतीजतन, नए Requireनिर्देश का उपयोग किया जाना चाहिए।

<VirtualHost *:80>
    ....

    # Set access permission
    <Directory "/path/to/docroot">
        Require all granted
    </Directory>

    ....
</VirtualHost>

OSX 10.6.8 पर Apache / 2.2.24। 1) यह पोस्ट, और 2) यहां दिए गए निर्देश: thegeekstuff.com/2011/07/apache-virtual-host (आपको एक चेतावनी मिलेगी कि लाइन NameVirtualHost *:80कुछ भी नहीं करती है, इसलिए आप इसे हटा सकते हैं। आपको निर्देशिका भी बनानी होगी। logfiles के लिए।), और ...
7stud

1
3) 127.0.0.1 web_site_name.comफ़ाइल के नीचे लाइन जोड़ने / निजी / आदि / मेजबानों ने मेरे लिए काम किया। यदि आपके पास अपाचे सेटअप है, तो कहने के लिए, 8080 को पोर्ट करें, फिर उपयोग करें <VirtualHost *:8080>, और जैसा कि आपको url का उपयोग करना है http://localhost:8080, आपको url का उपयोग करना होगा http://web_site_name.com:8080। 4) अंत में, मैं @ hmoyat के <निर्देशिका> कॉन्फ़िगरेशन (अन्य उत्तरों में से एक में) के साथ गया क्योंकि यह अधिक विशिष्ट लगता है।
7stud

1
हाय @eagor। MCrypt एक्सटेंशन को सक्षम करना सुनिश्चित करें (न केवल इसे स्थापित करें)। यह त्रुटि Apache की तुलना में PHP से भी अधिक संबंधित है इसलिए आप stackoverflow.com/q/16830405/1349295 या इसी तरह के थ्रेड्स आज़माना चाहेंगे ।
Czar Pino

3
कृपया अपने रूट डायरेक्टरी तक पहुँच प्रदान करने के साथ धैर्य रखें। यह असुरक्षित है। बेहतर है विशेष निर्देशिका तक पहुंच प्रदान करना (आप जनता को दिखाना चाहते हैं)।
रॉब्सन

1
उन लोगों के लिए, जो <Directory />एक्सेस अनुमति की स्थापना का अनुशंसित तरीका प्रति निर्देशिका (यानी <Directory "/path/to/docroot">) है। मेरे पिछले उदाहरण का उपयोग किया गया था <Directory />जो स्पष्ट रूप से पूरे फाइल सिस्टम के लिए दूरस्थ होस्ट पहुंच प्रदान करता है। मैं वर्तमान में इस बात से बिल्कुल अनजान हूँ कि यह कैसे एक पटाखे द्वारा लीवरेज किया जा सकता है सिवाय इसके कि आवश्यकता से अधिक अनुमति प्रदान करना एक बुनियादी सुरक्षा है नहीं। मैंने पोस्टपेरिटी की खातिर अपना जवाब अपडेट कर दिया है। सुरक्षा में कमी के लिए माफी। httpd.apache.org/docs/current/misc/…
Czar Pino

131

डिफ़ॉल्ट / var / www / के बाहर होस्ट की गई निर्देशिकाओं के लिए एक आम गोचा है कि Apache उपयोगकर्ता को निर्देशिका और उपनिर्देशिकाओं की अनुमति की आवश्यकता नहीं है जहां साइट होस्ट की जा रही है। अपाचे को फ़ाइल सिस्टम के रूट तक सभी निर्देशिकाओं की अनुमति की आवश्यकता होती है जहां साइट होस्ट की जाती है। अपाचे को स्वचालित रूप से / var / www / जब इसे स्थापित करने की अनुमति मिलती है, तो यदि आपकी मेजबान निर्देशिका सीधे नीचे है तो यह आपके लिए लागू नहीं होता है। संपादित करें: Daybreaker ने रिपोर्ट किया है कि उसकी Apache को डिफ़ॉल्ट निर्देशिका में सही पहुंच की अनुमति के बिना स्थापित किया गया था।

उदाहरण के लिए, आपको एक विकास मशीन मिली है और आपकी साइट की निर्देशिका है:

/username/home/Dropbox/myamazingsite/

आप सोच सकते हैं कि आप इससे दूर हो सकते हैं:

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

क्योंकि यह अपाचे को आपकी साइट की निर्देशिका तक पहुंचने की अनुमति देता है? खैर यह सही है लेकिन यह पर्याप्त नहीं है। अपाचे को डायरेक्टरी ट्री के लिए सभी तरह की अनुमति की आवश्यकता होती है इसलिए आपको क्या करना है:

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

स्पष्ट रूप से मैं अपाचे को एक उत्पादन सर्वर पर एक पूर्ण निर्देशिका संरचना तक पहुंच प्रदान करने की अनुशंसा नहीं करूंगा, उस निर्देशिका संरचना में क्या विश्लेषण किए बिना। उत्पादन के लिए यह डिफ़ॉल्ट निर्देशिका या किसी अन्य निर्देशिका संरचना को रखने के लिए सबसे अच्छा है जो वेब संपत्ति रखने के लिए है।

Edit2: जैसा कि u / chimeraha ने बताया, यदि आप सुनिश्चित नहीं हैं कि आप अनुमतियों के साथ क्या कर रहे हैं, तो संभावित रूप से अपने घर की निर्देशिका से खुद को लॉक करने से बचने के लिए अपनी साइट की निर्देशिका को अपने होम निर्देशिका से बाहर ले जाना सबसे अच्छा होगा।


2
आपके उत्तर से बहुत मदद मिली। किसी कारण से मेरे / var / www को Apache उपयोगकर्ता द्वारा एक्सेस के लिए सेट नहीं किया गया था। धन्यवाद!
डेब्रेकर

1
@ क्रैग यही प्रगति है। इसका मतलब है कि आपने अपनी प्रारंभिक अनुमतियों की समस्या हल कर ली है। 500 त्रुटि का कारण क्या है यह निर्धारित करने के लिए अपनी अपाचे / एप्लिकेशन लॉग फ़ाइलों के माध्यम से देखना शुरू करें।
जाइल्स रॉबर्ट्स

5
इस उत्तर के लिए धन्यवाद, मैंने सफलतापूर्वक / होम डायरेक्टरी ट्री से खुद को लॉक कर लिया ... :)
सीनियरप्रिचर

1
ऐसा करना: chgrp -R अपाचे / उपयोगकर्ता नाम / मेरे लिए समस्या तय! लेकिन एडिफ़िस की तरह, अब मैं अपने होम डायरेक्टरी ट्री तक नहीं पहुँच सकता, जब तक कि मैं अपने उपयोगकर्ता को वापस नहीं भेज देता। इसलिए अब मुझे अपने मूल उपयोगकर्ता को परिवर्तन के माध्यम से अपने परिवर्तनों को git में बदलने की आवश्यकता है। फिर मेरे सर्वर को फिर से तैयार करने के लिए अपाचे में वापस बदलें। क्या यह एकमात्र तरीका है?
anc1revv

1
chmod -R 2750 - संख्या 2 का क्या अर्थ हो सकता है? 7 - मालिक के लिए rwe अनुमतियाँ, 5 - समूह के लिए फिर से, और 0 - दूसरों के लिए कुछ भी नहीं। लेकिन 2 क्या है? साभार
तेजे

62

Apache 2.4 में कुछ कॉन्फ़िगरेशन पैरामीटर बदल गए हैं। जब मैं Zend फ्रेमवर्क 2 एप्लिकेशन सेट कर रहा था तो मेरे पास एक समान मुद्दा था । कुछ शोध के बाद, यहाँ समाधान है:

गलत कॉन्फ़िगरेशन

<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>

सही विन्यास

<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>

यदि आप Apache 2.2 से 2.4 पर माइग्रेट करने की योजना बना रहे हैं, तो यहां एक अच्छा संदर्भ है: http://httpd.apache.org/docs/2.4/upmission.html


धन्यवाद! आप का जवाब निशान पर सही है!
म्लादेन इलियू

42

अपाचे 2.2 के साथ

Order Deny,Allow
Allow from all

अपाचे 2.4 के साथ

Require all granted

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


यह एक महत्वपूर्ण अंतर है। Allow from allअपाचे 2.4 में काम नहीं करेगा।
क्रैम्पिको

2
शुक्रिया @mpgn, आपने मेरी बहुत मदद की है।
डिएगो बी। सउसा

यह वह उत्तर है जो मैं खोज रहा था
राजवीर गैंगवार

24

Apache 2.4 का उपयोग करते हुए Ubuntu 14.04 पर , मैंने निम्न कार्य किया:

फ़ाइल में निम्न जोड़ें, apache2.conf (अंडर /etc/apache2):

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

और सर्वर को पुनः लोड करें:

sudo service apache2 reload

संपादित करें: यह Apache 2.4 के साथ OS X Yosemite पर भी काम करता है। सर्व-महत्वपूर्ण पंक्ति है

सभी की आवश्यकता है


22

यदि आप WAMP सर्वर का उपयोग कर रहे हैं तो यह प्रयास करें:

  • टास्कबार पर WAMP सर्वर आइकन पर सिंगल क्लिक करें

  • ऑनलाइन डाले गए विकल्प का चयन करें

  • आपका सर्वर अपने आप रिस्टार्ट होगा

  • फिर अपने लोकलवेयर को एक्सेस करने का प्रयास करें


19

अगर आप SELinux Try के साथ CentOS का उपयोग कर रहे हैं :

sudo restorecon -r /var/www/html

और देखें: https://www.centos.org/forums/viewtopic.php?t=6834#p31548


4
इस आदमी के लिए एक पूरा इंटरनेट कृपया, उसने कमाया।
उरियेलुवाड

1
तुमने मेरी जान बचाई। मुझे नहीं पता कि इसे कहीं और क्यों नहीं बताया गया है ...
एरिकस

1
आपने सर मेरा दिन बचाया, धन्यवाद!
एंटनी फ्यूएंट्स आर्टाविया

2
यह इंटरनेट पर सबसे महत्वपूर्ण जवाब है
व्लादिमीर

17

मैंने अपने उपयोगकर्ता को जोड़कर अपनी समस्या हल की 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

2
जवाब का कोई मतलब नहीं है। Userदो बार दिया गया है और आखिरी Userहै myuser, व्हाट्स-अप के साथ User deamon? कृपया अपने उत्तर की शैली को ठीक करें, यह काफी अपठनीय है कि क्या होना चाहिए httpd.confऔर क्या नहीं। यह भी समझाने में विफल रहता है कि यह समस्या क्यों हल करता है
dbf

2
मैंने अपना "उपयोगकर्ता" और "समूह" अपने उपयोगकर्ता नाम में बदल दिया और यह मेरे लिए भी काम किया।
anc1revv

2
आप साहब एक भगवान हैं! मैं इसका पता नहीं लगा सका और अपने उपयोगकर्ता और समूह दोनों को उस उपयोगकर्ता के लिए अपडेट कर रहा हूं जिसके तहत मैं महान था। हुआ जब मैंने एक उत्पादन वीएम की नकल की और विकास वीएम के लिए एक नया उपयोगकर्ता स्थापित कर रहा था।
रिचर्ड ऑर्टेगा

यह उत्तर मेरे लिए सबसे उपयोगी था
mafonya

14

यह लेख Apache 2.2 पर वर्चुअल होस्ट बनाना मुझे (पॉइंट 9) शीर्ष वर्चुअल होस्ट निर्देशिका की अनुमति देता है।

मैं बस अपनी vhosts.conf फ़ाइल में यह पंक्तियाँ जोड़ता हूँ:

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

मैं समस्या का सामना कर रहा हूँ, मैंने अपने ubuntu 14.04 में दस्तावेज़ रूट रूट को / var / www / html / से / मीडिया / उपयोगकर्ता / परियोजनाओं / php / में बदल दिया: DocumentRoot / media / mithun / Projects / Sites / php <निर्देशिका / मीडिया / उपयोगकर्ता / परियोजनाएं / php /> विकल्प अनुक्रमणिका FollowSymLinks AllowOverride किसी को भी सभी की आवश्यकता नहीं है </ निर्देशिका> इसके काम नहीं कर रहा है। कोई मदद?
मिथुन श्रीवत्स

11

मैं एक ही त्रुटि प्राप्त कर रहा था और उम्र के लिए समस्या का पता नहीं लगा सका। यदि आप लिनक्स वितरण पर होते हैं जिसमें SELinux जैसे कि CentOS शामिल है , तो आपको यह सुनिश्चित करने की आवश्यकता है कि SELinux अनुमतियां आपकी दस्तावेज़ रूट फ़ाइलों के लिए सही तरीके से सेट की गई हैं या आपको यह त्रुटि मिलेगी। यह मानक फ़ाइल सिस्टम अनुमतियों के लिए अनुमतियों का पूरी तरह से अलग सेट है।

मैं ट्यूटोरियल अपाचे और SELinux का उपयोग करने के लिए हुआ था , लेकिन लगता है कि एक बार जब आप जानते हैं कि आपको क्या देखना है तो बहुत कुछ हो सकता है।


धन्यवाद! SELinux मेरी समस्याओं का कारण बन रहा था। मैंने इसे अक्षम कर दिया है और अब मैं अपनी html फ़ाइलों को एक्सेस कर सकता हूं जो डिफ़ॉल्ट / var / www / निर्देशिका से बाहर थीं। अब मैं इस ट्यूटोरियल पर एक नज़र डालूंगा, यह देखने के लिए कि क्या मैं इसे सक्षम और कॉन्फ़िगर कर सकता हूं ताकि मैं अभी भी अपनी फ़ाइलों तक पहुंच पा सकूं।
येलवोन

क्या आप जानते हैं कि restorecon /var/www/*कमांड सब कुछ वापस क्यों लाएगी या var_tइसके बजाय ? प्रकार एक त्रुटि का कारण बनता है । http_sys_content_ttmp_tvar_t403 Forbidden
इरोलिफ़्नन

6

यदि आप MAMP प्रो का उपयोग कर रहे हैं तो इसे ठीक करने का तरीका है - टैब के Indexesनीचे स्थित चेकबॉक्स को चेक करके । HostsExtended

MAMP Pro v3.0.3 में यही दिखता है: यहाँ छवि विवरण दर्ज करें


धन्यवाद यह मेरे लिए काम किया।
अहमद_अली

5

इस समस्या को हल करने का एक और तरीका है। आइए हम कहते हैं कि आप निर्देशिका "उपप्र" /var/www/html/subphpको एक्सेस करना चाहते हैं, जो मौजूद है , और आप इसका उपयोग करके इसे एक्सेस करना चाहते हैं 127.0.0.1/subphpऔर आपको इस तरह त्रुटि मिलती है:

आपके पास इस सर्वर पर / उपप्रो / का उपयोग करने की अनुमति नहीं है।

फिर निर्देशिका अनुमतियों को "कोई नहीं" से "फ़ाइलों तक पहुंच" में बदलें। एक कमांड-लाइन उपयोगकर्ता अनुमति बदलने के लिए chmod कमांड का उपयोग कर सकता है ।


2
क्या कोई आधा उत्थान विकल्प है?
साहू वी कुमार

3

मेरे पास एक ही मुद्दा था, लेकिन इस तथ्य के कारण कि मैंने var / www के बाहर एक फ़ोल्डर में अपाचे पर पथ बदल दिया, मैं समस्याओं में भागना शुरू कर दिया।

मैंने इसे var / www / html> होम / डेव / प्रोजेक्ट में एक सिमलिंक बनाकर तय किया, जो बिना किसी अनुमति के बदलने के लिए, चाल के लिए लग रहा था ...


1
बहुत बहुत धन्यवाद, आपने मुझे यह जानकर बहुत काम बचा लिया!
ऑस्कर .fimbres

3

मैं मैक ओएस एक्स का उपयोग करता हूं, मेरे मामले में, मैं बस एपाचे में php को सक्षम करने के लिए भूल जाता हूं, मुझे केवल एक पंक्ति को एक पंक्ति से हटाना है /etc/apache2/httpd.conf:

LoadModule php5_module libexec/apache2/libphp5.so

रेफरी इस विस्तार के लिए लेख।


2

(विंडोज और अपाचे में 2.2.x)

"निषिद्ध" त्रुटि भी वर्चुअल होस्ट को परिभाषित नहीं करने का परिणाम है।

जैसा कि जूलियन ने नोट किया है, यदि आप वर्चुअल का उपयोग करने का इरादा रखते हैं hosts.conf, तो httpd फाइल पर जाएं और निम्न लाइन को अनइंस्टॉल करें:

#Include conf/extra/httpd-vhosts.conf

फिर conf/extra/httpd-vhosts.confअपाचे को फिर से चालू करें और अपनी वर्चुअल होस्ट परिभाषाएँ जोड़ें ।


तुम सही हो!!!!!!
Gank

2

मैं इस समस्या में भाग गया, और मेरा समाधान moreso था कि www-data के पास उचित फ़ोल्डर नहीं थे, और इसके बजाय मैंने इसे किसी एक उपयोगकर्ता के लिए इसे सेट किया। (मैं थोड़ा फैंसी करने की कोशिश कर रहा था, लेकिन अच्छी तरह से खेलने के लिए ftp पाने के लिए गलत चालबाजी।)

चलने के बाद:

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

मशीन ने फिर से डेटा परोसना शुरू कर दिया। आप देख सकते हैं कि वर्तमान में कौन किस माध्यम से फ़ोल्डर का मालिक है

ls -l /var/www/html

2

यह समाधान सभी से अनुमति नहीं देता है

मैं बस अपनी सार्वजनिक निर्देशिका www को बदलना चाहता हूं, और इसे अपने पीसी, और वाईफाई से जुड़े मोबाइल से एक्सेस करना चाहता हूं। मैंने उबंटू को 16.04।

  1. इसलिए, पहले, मैंने /etc/apache2/sites-enabled/000-default.conf को संशोधित किया और मैंने अपनी नई सार्वजनिक निर्देशिका DocumentRoot "/ media / data / XAMPP / htdocs" के लिए लाइन DocumentRoot / var / www / html को बदल दिया।

  2. फिर मैंने /etc/apache2/apache2.conf को संशोधित किया, और मैंने लोकलहोस्ट के लिए अनुमतियाँ डाल दीं, और अपने मोबाइल, इस बार मैंने आईपी पते का उपयोग किया, मुझे पता है कि यह पूरी तरह से सुरक्षित नहीं है, लेकिन यह मेरे उद्देश्यों के लिए ठीक है।

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

1

इसे आज़माएं और कुछ Order allow,denyऔर न जोड़ें :

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

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

Ubuntu में apache2.conf के लिए पथ /etc/apache2/apache.conf है

फिर मैंने apache2.conf में निम्नलिखित पंक्तियों को जोड़ा और फिर मेरा फ़ोल्डर ठीक काम कर रहा है

    <Directory /path of required folder>
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
       </Directory>

   and run  " Sudo service apache2 restart " 

1

मुझे पता है कि इस प्रश्न के कई उत्तर पहले से ही हैं, लेकिन मुझे लगता है कि एक बहुत ही सूक्ष्म पहलू है, जिसका उल्लेख किया गया है, हालांकि पिछले उत्तरों में पर्याप्त प्रकाश डाला नहीं गया है।

अपाचे कॉन्फ़िगरेशन या अपनी फ़ाइलों की अनुमतियों की जांच करने से पहले, आइए एक सरल जाँच करें कि यह सुनिश्चित करने के लिए कि प्रत्येक निर्देशिका उस फ़ाइल का पूरा पथ है जिसे आप एक्सेस करना चाहते हैं (जैसे आपके दस्तावेज़ के रूट में index.php फ़ाइल) न केवल वेब सर्वर उपयोगकर्ता द्वारा पठनीय लेकिन निष्पादन योग्य भी ।

उदाहरण के लिए, मान लें कि आपके दस्तावेज़ रूट का मार्ग "/ var / www / html" है। आपको यह सुनिश्चित करना होगा कि सभी "var", "www" और "html" निर्देशिका वेब सर्वर उपयोगकर्ता द्वारा (पठनीय और निष्पादन योग्य) हैं। मेरे मामले में (Ubuntu 16.04) मैंने "html" निर्देशिका से "x" ध्वज को गलती से "दूसरों" समूह में हटा दिया था, इसलिए अनुमतियाँ इस तरह दिखती थीं:

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

जैसा कि आप वेब सर्वर उपयोगकर्ता (जिस पर "अन्य" अनुमतियाँ इस मामले में लागू होती हैं) "html" निर्देशिका तक पहुंच को निष्पादित नहीं कर सकते, और यह समस्या की जड़ थी। जारी करने के बाद:

chmod o+x html

आदेश, समस्या ठीक हो गई!

इस तरह से हल करने से पहले मैंने सचमुच इस धागे में हर दूसरे सुझाव की कोशिश की थी, और चूंकि सुझाव एक टिप्पणी में दफन किया गया था जो मुझे लगभग संयोग से मिला था, मुझे लगता है कि यहां इसे उजागर करने और विस्तार करने में मदद मिल सकती है।


0

मेरे पास केवल विशिष्ट नियंत्रक के लिए एक ही मुद्दा था - जो वास्तव में अजीब था। मेरे पास CI फ़ोल्डर की जड़ में एक फ़ोल्डर था जिसका नाम नियंत्रक के समान था जिसे मैं एक्सेस करने का प्रयास कर रहा था ... इस वजह से, सीआई नियंत्रक के बजाय इस निर्देशिका के लिए अनुरोध का निर्देशन कर रहा था।

इस फ़ोल्डर को हटाने के बाद (जो गलती से थोड़ा सा था), यह सब ठीक काम किया।

अधिक स्पष्ट होने के लिए, यहाँ यह है कि यह कैसा दिखता है:

/ci/controller/register.php

/ci/register/

मुझे हटाना पड़ा /ci/register/


प्रत्यक्ष पहुंच को रोकने के लिए कभी-कभी कोडिंजर .htaccess फ़ाइलों का उपयोग करता है। कोई छिपी हुई फ़ाइलें नहीं हैं, यह सुनिश्चित करने के लिए ls -l के साथ एक नज़र रखें।
pgee70

0

ठीक से जाँच करें कि आप अपनी फ़ाइलें कहाँ डाल रहे हैं, उन्हें दस्तावेज़ फ़ोल्डर में न डालें।

उदाहरण के लिए मैंने अपना कोड डॉक्यूमेंट्स फोल्डर में डालने की गलती की है क्योंकि यह काम नहीं कर रहा है क्योंकि दस्तावेज स्पष्ट रूप से केवल आपके लिए उपलब्ध हैं और APACHE के लिए उपलब्ध नहीं हैं। इसे एक निर्देशिका में ले जाने का प्रयास करें और आप इस मुद्दे को नहीं देख सकते हैं।

से फ़ोल्डर ले जाएँ:

/ उपयोगकर्ताओं / yourusername / दस्तावेज़ / कोड

यहाँ करने के लिए: / उपयोगकर्ता / YourUSERNAME / कोड


0

बस एक और योगदान लाने के लिए जैसे मैं इस समस्या के लिए भाग गया:

मैंने एक VirtualHost कॉन्फ़िगर किया था जिसे मैं नहीं करना चाहता था। मैंने उस लाइन के बारे में टिप्पणी की है जहाँ vhost को शामिल किया गया है, और यह काम किया है।


0

आप youralias.confइस कोड की तरह फ़ाइल बदल सकते हैं :

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>

0

याद रखें कि इस स्थिति में कॉन्फ़िगर की जाने वाली सही फ़ाइल phpMyAdmin उपनाम में httpd.conf नहीं है, लेकिन अंदर है bin/apache/your_version/conf/httpd.conf

निम्नलिखित पंक्ति देखें:

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>

सुनिश्चित करें कि यह सेट है Allow from all...

यदि नहीं, तो phpMyAdmin भी काम कर सकता है, लेकिन इसके अंतर्गत आपका रूट और अन्य फ़ोल्डर नहीं। इसके अलावा, याद रखें कि WAMP पुनः आरंभ करें और फिर ऑनलाइन डालें ...

इससे मेरा सिरदर्द हल हो गया।


यह जवाब बहुत गलत है ! आप चाहिए कभी नहीं सेट Allow from allया Require all grantedमें <Directory />की धारा httpd.confThats सिर्फ एक हैकर को प्रसन्न
RiggsFolly

0

SSHFS का उपयोग करते समय मेरे पास यह मुद्दा था कि मैं अपने वर्चुअलबॉक्स अतिथि में फ़ाइलों को माउंट करने के लिए अपने स्थानीय फाइल सिस्टम से एक डॉक बिल्ड बनाने से पहले चलाऊं। अंत में, "फिक्स" SSHFS माउंट के अंदर से निर्माण करने के बजाय सभी फ़ाइलों को वर्चुअलबॉक्स इंस्टेंस पर कॉपी करना था, और फिर वहां से बिल्ड को चलाना था।


0

काम करने का तरीका (जब तक कोई और समस्या न हो)

डिफ़ॉल्ट रूप से, अपाचे IPv4 (आम बाहरी आईपी पते) से पहुंच को प्रतिबंधित नहीं कर रहा है

क्या प्रतिबंधित हैं ' httpd.conf' में दिए गए आदेश ।

सबको बदली करें

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

साथ में

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

इसलिए अपाचे को दिए गए सभी प्रतिबंधों को हटा दिया गया ।

बदलें Require localके साथ Require all grantedके लिए / WAMP / www /: सी निर्देशिका।

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

क्या यह वास्तव में "<निर्देशिका />" (दो उदाहरण) है? क्या यह "<निर्देशिका>" नहीं होना चाहिए?
पीटर मोर्टेंसन

सबसे पहले dir पाथ प्राप्त करता है <Directory {/ path / to / your / dir}>
James

0

कॉन्फ़िगरेशन फ़ाइलों को बदलने के बाद मत भूलना Restart All Services

मैं इस पर अपने समय के तीन घंटे बर्बाद किया।


0

यह बहुत हास्यास्पद है, लेकिन मुझे 403 मना हो गया जब मैं जिस फाइल को डाउनलोड करने की कोशिश कर रहा था, वह फाइल सिस्टम पर नहीं थी। इस मामले में अपाचे त्रुटि बहुत सटीक नहीं है, और पूरी तरह से काम करने के बाद मैंने बस उस फ़ाइल को डाल दिया जहां यह होना चाहिए था।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.