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>
'프로그래밍 > Web' 카테고리의 다른 글
아마존 EC2 우분투 웹서버 설정 (0) | 2014.07.23 |
---|---|
크롬 모바일 버젼을 사용한 모바일 웹 페이지 디버깅 (0) | 2013.01.10 |
WAMP 환경에서 mod_rewrite를 사용 (0) | 2012.12.17 |
jQuery Mobile (0) | 2012.03.31 |
jQuery Mobile 사용법 (2) | 2011.11.10 |