일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- db
- devops
- Spring
- springboot
- elasticsearch
- javascript
- Web Server
- Design Patterns
- tool
- linux
- AWS
- 맛집
- jenkins
- Git
- Gradle
- ubuntu
- Spring Batch
- Spring Boot
- Oracle
- JVM
- MySQL
- 요리
- java
- php
- IntelliJ
- redis
- it
- ReactJS
- laravel
- jsp
Archives
- Today
- Total
아무거나
apache2 한 서버에 다중 VirtualHost 설정 본문
반응형
경로 : /etc/apache2/sites-available/000-default.conf
ex ) 내용 추가
<VirtualHost *:80>
<Directory "{소스경로}">
AllowOverride All
</Directory>
ServerName localhost
ServerAlias local.test.kr
ServerAdmin webmaster@localhost
DocumentRoot {소스경로}
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
#RewriteEngine On
#RewriteCond %{HTTP_HOST} ^(www\.zooma\.kr$)
#RewriteRule (.*) http://test.kr$1 [R=301,L]
</VirtualHost>
<VirtualHost *:80>
<Directory "{소스경로}">
AllowOverride All
</Directory>
ServerName localhost
ServerAlias local.test2.kr
ServerAdmin webmaster@localhost
DocumentRoot {소스경로}
ErrorLog ${APACHE_LOG_DIR}/error_html.log
CustomLog ${APACHE_LOG_DIR}/access_html.log combined
</VirtualHost>
<VirtualHost *:80>
<Directory "{소스경로}">
AllowOverride All
</Directory>
ServerName localhost
ServerAlias local.test3.com
ServerAdmin webmaster@localhost
DocumentRoot {소스경로}
ErrorLog ${APACHE_LOG_DIR}/error_html.log
CustomLog ${APACHE_LOG_DIR}/access_html.log combined
</VirtualHost>
반응형
'Infra > Apache' 카테고리의 다른 글
아파치 로그에 로드밸런서 IP밖에 찍히지 않을때 (0) | 2019.04.24 |
---|---|
apache 기본포트 변경 방법 (0) | 2019.04.23 |
Apache ab를 이용한 스트레스 테스트 방법 (0) | 2019.03.12 |
원하는 경로에 ELB를 통하여 유입된 Client IP를 가져오는 방법 (0) | 2019.03.08 |
아파치 서버 MPM, worker, prefork 방식 (2) | 2018.07.11 |
Comments