1. 권한을 확인해본다.

2. 아래 명령을 실행해본다.

sudo rm -rf /Library/CoreMediaIO/Plug-Ins/DAL/RelayCam.plugin

Posted by sjokim
,

## mod_header 설치

$APACHE_HOME/bin/apxs -i -a -c \

      [httpd-2.2.31]/modules/metadata/mod_headers.c



## httpd.conf


LoadModule headers_module     modules/mod_headers.so

<IfModule mod_headers.c>

RequestHeader set X-Forwarded-Host web1

RequestHeader set X-Forwarded-Time "%t"

</IfModule>



http://httpd.apache.org/docs/current/ko/mod/mod_headers.html


%t 요청을 받은 시간을 국제표준시로 epoch (1970년 1월 1일) 이후 지난 마이크로초 단위로. 값 앞에 t=이 붙는다.

%D 요청을 받은 시간부터 헤더를 네트웍에 쓸때까지 걸린 시간. 요청의 기간을 잰다. 값 앞에 D=이 붙는다.

%{FOOBAR}e 환경변수 FOOBAR의 내용.



Posted by sjokim
,



sudo ln -s 

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain 

/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain



========================


Configuring Apache Portable Runtime library ...


checking for APR... yes

  setting CC to "/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc"

  setting CPP to "/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E"

  setting CFLAGS to " "

  setting CPPFLAGS to " -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10"

  setting LDFLAGS to " "


Configuring Apache Portable Runtime Utility library...


checking for APR-util... yes

checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc

checking whether the C compiler works... no

configure: error: in `/app/src/httpd-2.2.27':

configure: error: C compiler cannot create executables

See `config.log' for more details



'아파치-톰켓' 카테고리의 다른 글

mod_headers 설치하기  (1) 2015.09.20
아파치 모듈 만들기  (0) 2014.06.02
Apache-Tomcat-로드-밸런싱-세션-클러스터링  (0) 2014.04.03
Posted by sjokim
,