/etc/apache2/
#Include /private/etc/apache2/other/*.conf
<VirtualHost *:80>DocumentRoot “/Library/WebServer/Documents/Me2Money”ServerName local.me2day.netErrorLog “/private/var/log/apache2/local.me2day.net-error_log”CustomLog “/private/var/log/apache2/local.me2day.net-access_log” common<Directory “/”>Allow from allOptions +Indexes</Directory>ProxyRequests Off<Proxy /*>Order deny,allowAllow from all</Proxy>ProxyPass /seleniumReport/ http://local.me2day.net:8088/seleniumReport/ retry=1ProxyPreserveHost Off</VirtualHost>
#Me2Money10.0.1.4 local.me2day.net
Apache + PHP 연동
맥에는 역시, php 모듈도 기본 설치 되어 있다. 연동은 너무나 간단하다.
사실상, 이미 연동되어 있다고 생각해보 무방하다.
기본으로 설치된 PHP 연동을 위해서는 httpd.conf 파일을 열면,
아래와 같이 주석으로 처리된, php 모듈만 로드해주면된다.
#LoadModule php5_module libexec/apache2/libphp5.so
간단히 주석을 제거한후, 아파치를 다시 실행하자.
그리고 간단한 phpinfo(); 파일을 출력해보자.
올레~~ 성공~!!
차암~ 쉽죠~!!