문제점 css, js, png 같은 정적 자원들이 log 에 표시되는걸 없애고 싶다 Nginx Log 제어 방법 공식문서, logging conditional map $uri $name { .(css|js|png)$ 0; default 1; } access_log logs/access.log main if=$loggable; or set $loggable 1; access_log logs/access.log main if=$loggable; if ($uri ~* ".(css|js|png)$") { set $loggable 0; }
12월 18일에 2019년도 Spring One re:Cap 행사에 참석을 했습니다. 전체적인 순서는 Keynote 정리 -> 기술 세션 정리 -> Live Coding with Mark Heckler -> Apache Geode Summit re:Cap -> Concourse / Spinnaker 로 진행 되었습니다. Live Coding 순서부터 회
upstream target { server 127.0.0.1; ... } ... location / { proxy_pass http://target; } 위와 같이 설정했을때 기본적은 proxy 는 문제 없이 동작하는데 302 처리할때는 url이 http://target 으로 사용자에게 처리되는 경우가 발생했었다. 아래와 같이 h
Apache 가 설치되어 있을때 추가로 모듈을 설치해야 할때 Apache Source Code Download Apache Http Server Download Page 에서 httpd-{version}.tar 다운로드 ex) wget http://apache.mirror.cdnetworks.com//httpd/httpd-2.4.41.tar.gz Compile mod_include.so 가 필요할때 컴파일로 모듈 만들기 $APACHE_HOME/bin/apxs -i -a -c $APACHE_SOURCE_HOME/modules/filters/mod_include.c
신규 레파지토리 생성 신규 레포파지토리 생성 레파지토리 이름은 반드시 {profile id}.github.io 로 생성해야 한다. GitHub Pages 활성화 각 레파지토리의 세팅 페이지에서 ( ex: https://github.com/4ppl3Hun73r/4ppl3Hun73r.github.io/settings ) 에서 GitHub Pages Theme 를 선택해주게 되