본문 바로가기

프로그래밍/Web

로컬 네트워크에서 WAMP 접속

반응형

WAMP 환경의 웹서버를 네트워크로 연결된 다른 컴퓨터에서 접속하도록 설정하는 방법.

E:\wamp\bin\apache\apache2.4.2\conf\httpd.conf 파일을 텍스트 에디터로 연다. 이 때, 경로는 자신의 시스템에 설치된 구성에 맞게 변경할 것.

이 파일에서 다음과 유사한 부분을 찾아서 아래에 색칠된 부분을 한 줄 추가하고 저장한다. 

서버를 재시작한 다음, 다른 컴퓨터에서 IP주소를 통해 접속해본다.

그래도 잘 안되면 구글에서 열심히 검색해 본다.

DocumentRoot "E:/wamp/www/"

<Directory "E:/wamp/www/">

    #

    # Possible values for the Options directive are "None", "All",

    # or any combination of:

    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews

    #

    # Note that "MultiViews" must be named *explicitly* --- "Options All"

    # doesn't give it to you.

    #

    # The Options directive is both complicated and important.  Please see

    # http://httpd.apache.org/docs/2.4/mod/core.html#options

    # for more information.

    #

    Options All

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


    #

    # Controls who can get stuff from this server.

    #

    # Online --> Require all granted

    Require all granted

    #   onlineoffline tag - don't remove

    

    Require local


</Directory>


반응형