"이 서버에 액세스 할 수있는 권한이 없습니다"라는 오류 메시지가 표시됨


520

Apache를 직접 구성 하고 가상 호스트에 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 폴더의 권리는 무엇이며 누가 소유합니까?
Oliver

Windows 7의 로컬 컴퓨터에 있으며 어떤 폴더를 의미합니까? i : / projects / webserver / __ tools / phpmyadmin /?
Dmytro Zarezenko 2016 년

예 아파치는 사용자 데몬으로 실행됩니다. 이 사용자는 파일을 읽을 권리가 있습니까?
Oliver

예, 저는 관리자입니다
Dmytro Zarezenko

4
당신이 .htaccess(디렉토리에서) 당신이 접근하려고하는 접근을 거부하기 위해 재정의 하는 파일 이 없는지 확인하십시오
Ujjwal Singh

답변:


662

2016 년 10 월 업데이트

4 년 전,이 답변은 많은 사람들이 참조로 사용했기 때문에이 기간 동안 보안 관점에서 많은 것을 배웠지 만 중요한 메모를 명확히 할 책임이 있으며 그에 따라 답변을 업데이트했습니다.

원래 답변은 정확하지만 일부 프로덕션 환경에서는 안전하지 않으며 환경을 설정하는 동안 발생할 수있는 몇 가지 문제에 대해 설명하고 싶습니다.

빠른 솔루션을 찾고 있고 보안이 중요하지 않은 경우 (예 : 개발 환경) 대신 원래 답변을 건너 뛰고 읽으십시오.

많은 시나리오가 403 금지로 이어질 수 있습니다 .


A. 디렉토리 인덱스 (에서 mod_autoindex.c)

당신이 디렉토리에 액세스하고이 디렉토리에 디폴트 파일이없는 경우 아파치는 Options Indexes이 디렉토리를 사용할 수 없습니다.

A.1. DirectoryIndex옵션 예

DirectoryIndex index.html default.php welcome.php

A.2. Options Indexes선택권

설정된 경우, 기본 파일을 찾지 못한 경우 Apache는 디렉토리 내용을 나열합니다 (위의 👆🏻 옵션에서).

위의 조건 중 어느 것도 만족되지 않으면

403 Forbidden 을 받게됩니다

추천

  • REALLY가 필요 하지 않으면 디렉토리 목록을 허용하지 않아야 합니다.
  • 기본 색인 DirectoryIndex을 최소로 제한하십시오 .
  • 수정하려는 경우, 예, 사용을 위해, 오직 필요한 디렉토리에 수정을 제한하는 .htaccess파일 또는 내부에 수정을 넣어 <Directory /my/directory>지침

B. deny,allow지시어 (Apache 2.2)

귀하가 요청한 의견에 @Radu, @Simon A. Eugster가 언급 한 사항 은 해당 지침에 의해 거부, 블랙리스트 또는 화이트리스트입니다.

나는 완전한 설명을 게시하지는 않겠지 만, 몇 가지 예가이 규칙을 간단히 이해하는 데 도움이 될 수 있다고 생각합니다.

둘 다 일치하는 경우, 마지막 지시문은 승리 할 것입니다

Order allow,deny

두 지시어와 일치하면 거부됩니다 ( conf에서 allow지시어가 작성된 후에도 deny)

Order deny,allow

두 지시어와 일치하면 allow가 승리합니다.

실시 예 1

Order allow,deny
Allow from localhost mydomain.com

localhost와 * .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

C. Require지시문 (Apache 2.4)

Apache 2.4는 새로운 모듈을 사용합니다 mod_authz_host

Require all granted => 모든 요청 허용

Require all denied => 모든 요청 거부

Require host safe.com => safe.com에서만 허용


D. 파일 권한

대부분의 사람들이 잘못한 것은 파일 권한을 구성하는 것입니다.

황금률은

허가없이 시작하고 필요에 따라 추가

리눅스에서 :

  • 디렉토리는 Execute허가를 받아야한다

  • 파일에는 Read권한 이 있어야합니다

  • 예, 당신은 옳 Execute습니다 파일에 대한 권한을 추가하지 마십시오

예를 들어이 스크립트를 사용하여 폴더 권한을 설정합니다.

# 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 지시문 을 설정하여 해결했습니다 .

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,allowAllow 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
또한 Apache 프로세스 소유자가 가상 ​​호스트의 지정된 경로를 읽거나 실행할 수있는 권한을 갖도록 폴더의 권한을 확인해야합니다. Windows에서는 이것이 거의 문제가되지 않지만 Linux에서는 403의 더 빈번한 원인 일 수 있습니다.
Radu

76
Apache 2.4에서 추가로 변경 Order deny,allow, Allow from all해야 Require all granted했습니다. 여기를 참조하십시오 : httpd.apache.org/docs/2.4/upgrading.html
Simon A. Eugster

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당신이 그것을 삭제할 수 있도록, 아무것도하지 않습니다를 또한 디렉토리를 생성해야합니다.
7stud

1
3) 127.0.0.1 web_site_name.com/ private / etc / hosts 파일의 맨 아래에 줄 을 추가하면 나를 위해 일했습니다. 예를 들어 포트 8080을 수신하도록 Apache를 설정 한 경우을 <VirtualHost *:8080>사용하고 url http://localhost:8080을 사용해야하는 경우 url을 사용해야합니다 http://web_site_name.com:8080. 4) 결국 @hmoyat의 <Directory> 구성 (다른 답변 중 하나)이 더 구체적으로 보이기 때문에갔습니다.
7stud

1
안녕하세요 @eagor. MCrypt 확장도 활성화해야합니다 (설치뿐만 아니라). 이 오류는 Apache보다 PHP와 더 관련이 있으므로 stackoverflow.com/q/16830405/1349295 또는 유사한 스레드 를 사용해보십시오 .
Czar Pino

3
루트 디렉토리에 액세스 권한을 부여하십시오. 안전하지 않습니다. 더 나은 방법은 특정 디렉토리에 대한 액세스 권한을 부여하는 것입니다 (공개로 표시하려는 경우).
robson

1
사용 <Directory />권한이있는 사용자에게 권장 되는 액세스 권한 설정 방법은 디렉토리 (예 :) <Directory "/path/to/docroot">입니다. 필자의 이전 예제 <Directory />에서는 전체 파일 시스템에 대한 원격 호스트 액세스 권한을 분명히 부여했습니다. 필자는 현재 필요한 것보다 많은 권한을 제공하는 것이 기본 보안이 아니라는 것을 제외하고는 크래커가 어떻게이를 활용할 수 있는지 정확히 알지 못합니다. 후손을 위해 답변을 업데이트했습니다. 보안에 대한 통찰력 부족에 대한 사과. httpd.apache.org/docs/current/misc/…
Czar Pino

131

기본 / var / www / 외부에서 호스팅되는 디렉토리의 일반적인 문제점은 Apache 사용자에게 사이트가 호스팅되는 디렉토리 및 하위 디렉토리에 대한 권한 만 필요하지 않다는 것입니다. Apache는 사이트가 호스팅되는 파일 시스템의 루트까지 모든 디렉토리에 대한 권한을 요구합니다. Apache는 설치시 / var / www /에 할당 된 권한을 자동으로 가져옵니다. 따라서 호스트 디렉토리가 바로 그 아래에있는 경우에는 적용되지 않습니다. 편집 : Daybreaker는 자신의 Apache가 기본 디렉토리에 대한 올바른 액세스 권한없이 설치되었다고보고했습니다.

예를 들어 개발 머신이 있고 사이트의 디렉토리는 다음과 같습니다.

/username/home/Dropbox/myamazingsite/

다음과 같이 도망 갈 수 있다고 생각할 수도 있습니다.

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

Apache가 사이트의 디렉토리에 액세스 할 수있는 권한을 부여하기 때문입니까? 글쎄 맞지만 충분하지 않습니다. Apache는 디렉토리 트리까지 모든 권한을 요구하므로 다음과 같이해야합니다.

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

분명히 나는 ​​디렉토리 구조의 내용을 분석하지 않고 프로덕션 서버의 Apache에 완전한 디렉토리 구조에 대한 액세스 권한을 부여하지 않는 것이 좋습니다. 프로덕션 환경에서는 기본 디렉토리 또는 웹 자산을 보관하기위한 다른 디렉토리 구조를 유지하는 것이 가장 좋습니다.

Edit2 : u / chimeraha가 지적했듯이 권한으로 수행중인 작업이 확실하지 않으면 홈 디렉토리에서 사이트를 잠그지 않도록 사이트 디렉토리를 홈 디렉토리 밖으로 옮기는 것이 가장 좋습니다.


2
당신의 대답은 많은 도움이되었습니다. 어떤 이유로 내 / var / www는 아파치 사용자가 액세스 할 수 있도록 설정되지 않았습니다. 감사!
daybreaker

1
@Craig 진행 중입니다. 초기 권한 문제를 해결했음을 의미합니다. 500 오류의 원인을 판별하기 위해 Apache / 응용 프로그램 로그 파일을 살펴보십시오.
Giles Roberts

5
이 답변 덕분에 / home 디렉토리 트리에서 성공적으로 잠겼습니다 ... :)
seniorpreacher

1
이 작업을 수행하면 chgrp -R apache / username /이 문제를 해결했습니다. 그러나 Edifice과 마찬가지로 이제 사용자에게 chgrp하지 않으면 홈 디렉토리 트리에 액세스 할 수 없습니다. 이제 원래 사용자로 변경하여 git을 통해 변경 사항을 가져와야합니다. 그런 다음 아파치로 다시 변경하여 서버를 재배치하십시오. 이것이 유일한 방법입니까?
anc1revv

1
chmod -R 2750-숫자 2를 의미 할 수있는 것은 무엇입니까? 7-소유자에 대한 권한, 5-그룹에 대한 권한 및 0-다른 사람에게는 권한이 없습니다. 그러나 2는 무엇입니까? 감사합니다
Tebe

62

Apache 2.4에서 일부 구성 매개 변수가 변경되었습니다. Zend Framework 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/upgrading.html


감사! 당신은 마크에 바로 대답입니다!
Mladen Ilić


24

우분투 14.04 사용하여 아파치 2.4 , I는 다음했다 :

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 와 함께 CentOS를 사용하는 경우 :

sudo restorecon -r /var/www/html

더보기 : https://www.centos.org/forums/viewtopic.php?t=6834#p31548


4
이 사람을위한 하나의 인터넷 전체가 제발 그것을 얻었습니다.
UrielUVD

1
당신은 내 생명을 구했습니다. 나는 그것이 다른 곳에서 지적되지 않은 이유를 모른다 ...
Erikas

1
선생님, 내 하루를 구 해주셔서 감사합니다!
Antony Fuentes Artavia

2
이것은 인터넷에서 가장 중요한 답변입니다.
Vladimir Lazarevski

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

2
당신은 신의 선물입니다! 나는 이것을 알아낼 수 없었고 내 사용자와 그룹을 모두 내가 잘하고있는 사용자로 업데이트했습니다. 프로덕션 VM을 복사하고 개발 VM을위한 새 사용자를 설정했을 때 발생했습니다.
Richard Ortega

이 답변은 저에게 가장 도움이되었습니다
mafonya

14

이 기사에서는 Apache 2.2에서 가상 호스트를 작성 하여 최상위 가상 호스트 디렉토리에 대한 권한 (포인트 9)에 도움이됩니다.

이 줄을 vhosts.conf 파일에 추가하기 만하면됩니다.

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

문제가 있습니다. 우분투 14.04의 문서 루트 경로를 / var / www / html /에서 / media / user / projects / php /로 변경했습니다. DocumentRoot / media / mithun / Projects / Sites / php <Directory / media / user / projects / php /> 옵션 색인 FollowSymLinks AllowOverride 없음 모든 권한 부여 </ Directory> 작동하지 않습니다. 어떤 도움?
Mithun Shreevatsa

11

나는 같은 오류가 발생하여 연령대의 문제를 파악할 수 없었습니다. CentOS 와 같은 SELinux 가 포함 된 Linux 배포판에있는 경우 문서 루트 파일에 대해 SELinux 권한이 올바르게 설정되어 있는지 확인해야합니다. 그렇지 않으면이 오류가 발생합니다. 표준 파일 시스템 권한과는 완전히 다른 권한 집합입니다.

나는 Apache와 SELinux 튜토리얼을 사용 했지만, 무엇을 찾아야하는지 알고 나면 많은 것이 보인다.


감사! SELinux가 문제를 일으켰습니다. 나는 그것을 비활성화하고 이제 기본 / var / www / 디렉토리 외부에있는 내 HTML 파일에 액세스 할 수 있습니다. 이제이 튜토리얼을 살펴보고 파일에 액세스 할 수 있도록 활성화 및 구성 할 수 있는지 확인합니다.
yellavon 2016 년

restorecon /var/www/*명령이 왜 또는 var_t대신에 모든 것을 다시 가져올 지 알고 있습니까? 유형에 따라 오류가 발생합니다. http_sys_content_ttmp_tvar_t403 Forbidden
errolflynn

6

MAMP Pro를 사용하는 경우이 문제를 해결하는 방법 IndexesHosts- Extended탭 아래의 확인란을 선택하는 것 입니다.

MAMP Pro v3.0.3에서는 다음과 같이 보입니다. 여기에 이미지 설명을 입력하십시오


고맙습니다.
Ahmed_Ali

5

이 문제를 해결하는 다른 방법이 있습니다. 에 존재하는 "subphp"디렉토리 /var/www/html/subphp에 액세스하고 다음을 사용하여 액세스하려고하면 다음 127.0.0.1/subphp과 같은 오류가 표시됩니다.

이 서버에서 / subphp /에 액세스 할 권한이 없습니다.

그런 다음 디렉토리 권한을 "없음"에서 "파일 액세스"로 변경하십시오. 명령 행 사용자는 chmod 명령을 사용하여 권한을 변경할 수 있습니다.


2
반 공감 옵션이 있습니까?
Sahu V Kumar

3

나는 같은 문제가 있었지만 아파치의 경로를 var / www 외부의 폴더로 변경했기 때문에 문제가 발생하기 시작했습니다.

var / www / html> home / dev / project에 권한을 변경하지 않고 트릭을 수행하는 것처럼 보이는 심볼릭 링크를 만들어서 고쳤습니다 ...


1
정말 감사합니다
oscar.fimbres

3

나는 Mac OS X을 사용한다. 필자의 경우 아파치에서 PHP를 활성화하는 것을 잊어 버렸다 /etc/apache2/httpd.conf.

LoadModule php5_module libexec/apache2/libphp5.so

자세한 내용은 기사를 참조 하십시오.


2

(Windows 및 Apache 2.2.x에서)

"금지 된"오류는 가상 호스트가 정의되지 않은 결과이기도합니다.

Julien이 언급했듯이 virtual을 사용하려는 경우 hosts.confhttpd 파일로 이동하여 다음 줄의 주석을 해제하십시오.

#Include conf/extra/httpd-vhosts.conf

그런 다음 가상 호스트 정의를 추가 conf/extra/httpd-vhosts.conf하고 Apache를 다시 시작하십시오.


당신이 맞아요 !!!!!!
Gank

2

나는이 문제에 부딪 쳤고, 내 솔루션은 www-data가 올바른 폴더를 소유하지 않고 대신 사용자 중 하나가 소유하도록 설정했습니다. (나는 FTP를 멋지게 재생하기 위해 약간의 공상을 시도했지만 잘못된 속임수입니다.)

실행 후 :

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

기기가 데이터를 다시 제공하기 시작했습니다. 다음을 통해 현재 폴더를 소유 한 사람을 볼 수 있습니다.

ls -l /var/www/html

2

이 솔루션은 모든 것을 허용하지 않습니다

공개 디렉토리 www를 변경하고 PC와 Wi-Fi로 연결된 모바일에서 액세스하고 싶습니다. 나는 우분투 16.04입니다.

  1. 따라서 먼저 /etc/apache2/sites-enabled/000-default.conf를 수정 하고 새 공용 디렉토리 DocumentRoot "/ media / data / XAMPP / htdocs"에 대한 DocumentRoot / var / www / html 행을 변경했습니다.

  2. 그런 다음 /etc/apache2/apache2.conf를 수정하고 localhost 및 모바일에 대한 권한을 부여했습니다. 이번에는 IP 주소를 사용했습니다. IP 주소가 완전히 안전하지는 않지만 내 목적으로는 괜찮습니다.

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

우분투에서 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

나는이 질문에 이미 몇 가지 대답이 있음을 알고 있지만 언급되었지만 이전 답변에서 충분히 강조 표시되지 않은 매우 미묘한 측면이 있다고 생각합니다.

Apache 구성 또는 파일의 권한을 확인하기 전에 액세스하려는 파일의 전체 경로를 구성 하는 디렉토리 (예 : 문서 루트의 index.php 파일)가 단순한 지 확인하십시오. 웹 서버 사용자가 읽을 수 있지만 실행할 수도 있습니다 .

예를 들어, 문서 루트의 경로가 "/ var / www / html"이라고 가정하겠습니다. 웹 서버 사용자가 모든 "var", "www"및 "html"디렉토리를 읽을 수 있고 실행 가능한지 확인해야합니다. 필자의 경우 (Ubuntu 16.04) "html"디렉토리에서 "others"그룹에 대한 "x"플래그를 실수로 제거하여 권한이 다음과 같이 표시되었습니다.

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

당신은 웹 서버 사용자를 볼 수 있듯이 (이하 "기타"권한이 경우에 적용 누구에게)하지 않았다 실행 은 "HTML"디렉토리에 접근,이 정확히 문제의 근본이었다. 발행 후 :

chmod o+x html

명령, 문제가 해결되었습니다!

이 방법을 해결하기 전에 문자 그대로이 스레드에서 다른 모든 제안을 시도했으며 제안이 거의 우연히 발견 된 의견에 묻혀 있기 때문에 강조하고 확장하는 것이 여기에 도움이 될 것이라고 생각합니다.


0

특정 컨트롤러에 대해서만 동일한 문제가 발생했습니다. 정말 이상했습니다. CI 폴더의 루트에 액세스하려는 컨트롤러와 이름이 같은 폴더가있었습니다. 그 때문에 CI는 컨트롤러 대신이 디렉토리로 요청을 전달했습니다.

이 폴더를 실수로 제거한 후 (실수로 약간 있었음) 모두 정상적으로 작동했습니다.

더 명확하게 말하면 다음과 같습니다.

/ci/controller/register.php

/ci/register/

나는 제거해야했다 /ci/register/.


때로는 codeigniter가 .htaccess 파일을 사용하여 직접 액세스를 중지합니다. 숨겨진 파일이 없도록 ls -Al을 살펴보십시오.
pgee70

0

파일을 넣을 위치를 정확하게 확인하고 문서 폴더에 파일을 중첩시키지 마십시오.

예를 들어, 문서가 명시 적으로 APACHE가 아닌 귀하에게만 제공되기 때문에이 코드는 Documents 폴더에 코드를 넣는 실수를했습니다. 한 디렉토리 위로 이동하면이 문제가 표시되지 않을 수 있습니다.

다음에서 폴더 이동 :

/ 사용자 / YOURUSERNAME / 문서 / 코드

여기로 : / Users / YOURUSERNAME / code


0

이 문제에 대해서도 다른 기여를하기 위해 :

원하지 않는 VirtualHost를 구성했습니다. 가상 호스트에 대한 포함이 발생한 행을 주석 처리했으며 작동했습니다.


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.conf그게 단지 해커는 기쁨
RiggsFolly

0

도커 빌드를 실행하기 전에 SSHFS 를 사용하여 로컬 파일 시스템에서 VirtualBox 게스트의 파일을 마운트 할 때이 문제가 발생했습니다 . 결국 "수정"은 SSHFS 마운트 내부에서 빌드하지 않고 모든 파일을 VirtualBox 인스턴스에 복사 한 다음 빌드를 실행하는 것이 었습니다.


0

작업 방법 (다른 문제가없는 한)

기본적으로 Apache는 IPv4 (공통 외부 IP 주소) 에서의 액세스를 제한하지 않습니다.

' httpd.conf'에 제공된 명령이 제한됩니다 .

전부 교체

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

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

따라서 Apache에 주어진 모든 제한을 제거합니다 .

교체 Require localRequire all granted에 대한 / WAMP / www /에서 : C 디렉토리.

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

실제로 "<Directory />"(2 개의 인스턴스)입니까? "<Directory>"가 아니어야합니까?
피터 Mortensen

첫 번째는 dir path <Directory {/ path / to / your / dir}>
James

0

구성 파일을 변경 한 후에는를 잊지 마십시오 Restart All Services.

나는 그것에 3 시간의 시간을 낭비했다.


0

이것은 우스운 일이지만 다운로드하려고하는 파일이 파일 시스템에 없을 때 403 Forbidden을 받았습니다. 이 경우 아파치 오류는 그다지 정확하지 않으며 파일을 원래 위치에 놓은 후에 모든 것이 작동했습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.