Apache
아파치 웹사이트 : http://httpd.apache.org/download.cgi
C:\Program Files (x86)\Apache Group\Apache2\conf
- httpd.conf 파일에서
# line 119
# Listen 12.34.56.78:80
Listen 80
Listen 8080 (포트번호 추가하려면)
line 252
# This should be changed to whatever you set DocumentRoot to.
#
#<Directory "D:\Workspace\com.ssdcng.design">
# 참고
<Directory "D:\Workspace"> (해당 로컬 루트 프로젝트 전체)
# 도큐먼트 루트설정하기
# line 321
DirectoryIndex index.html index.html.var main.html
(인덱스로 사용할 파일네이밍 추가할수 있음)
# line 802 (인클루드 적용하기)
AddType text/html .html
AddOutputFilter INCLUDES .html
끝라인 962-965라인 정도에 주석풀기
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot D:\Workspace\com.ssdcng.design
ServerName dummy-host.example.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>
# 아래 코드는 포트번호 하나 더 추가할 경우에 사용한다.
<VirtualHost *:8080>
'Dev Environment > 개발 환경' 카테고리의 다른 글
[Window] cmd 명령어 & DOS Command (3) | 2015.09.09 |
---|---|
.bashrc 문서 별칭(Alias) 등록 및 CLI 에서 유효성검사하기 (0) | 2015.09.09 |
Aptana Studio localhost 설정하기 (0) | 2015.02.15 |
톰캣 로컬 서버 및 SSI 설정하기 (0) | 2015.02.15 |
tomcat SSI(sever side include) 설정하기 (0) | 2015.02.11 |