일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 프록시
- 엘라스틱서치
- 워드프레스 rss
- memcached
- Kibana
- Wordpress
- 아파치
- mapping
- template
- wordpress rss
- 크롤링
- 워드프레스
- config
- Apache
- 워드프레스 피드
- elasticsrach template
- htaccess
- htpasswd
- memcache
- 인스타그램
- 설정 파일
- 맵핑
- wordpress feed
- 아파치 프록시
- Elasticsearch
- wordpress function
- graph api
- Today
- Total
EunsooD
리눅스에서 파일을 복사 할 때, 특정 폴더나 파일을 제외하고 복사하고 싶은 경우가 있다.소스를 복사하는데, 로그폴더가 크거나, 캐시폴더가 크거나.. 등등 그럴 때 cp명령어와 ls명령어를 적절히 섞어서 복사하면 된다. ls /DATA | grep -v cache | grep -v log 위와 같이 ls 명령어를 해보면 /DATA 하위의 cache 와 log 폴더를 제외하고 결과가 나온다.이를 이용하여 복사 해주면 특정 폴더를 제외하고 복사하게 된다. cp -R "복사할 폴더" `ls "복사 할 폴더" | grep -v "제외 할 파일" | grep -v "제외 할 파일"..... ` "복사 되는 경로"ex) cp -R DATA `ls /DATA | grep -v cache | grep -v log` "/..
아파치 설정을 변경하고 재시작해서 설정을 적용시키곤 하는데,세션들이 연결되어 있어서 재시작이 어려운 경우가 있다. 그 때에는 다음과 같은 명령어를 입력하면 재시작 하지 않고 설정 적용이 가능하다. [root]# apachectl graceful 출처 : https://serverfault.com/questions/94089/apache-config-not-updating-on-restart?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qaacceptehttps://serverfault.com/questions/94089/apache-config-not-updating-on-restart?utm_medium=organic&ut..
반응형 혹은 모바일 페이지에 대한 코딩을 할 때 항상 고민인 부분이 바로 이미지 처리다. 이미지가 모두 같은 크기를 가지고 있지 않기 때문에, 단순히 넓이만 맞춘다고 모든게 해결 되지 않는다. 그래서 찾은 방법은 아래와 같다. .thumbnail-wrappper { width: 25%; }.thumbnail { position: relative; padding-top: 100%; /* 1:1 ratio */ overflow: hidden; }img { position: absolute; top: 0; left: 0; right: 0; bottom: 0; max-width: 100%; height: auto; } 출처 : http://webdir.tistory.com/487 위 같이 padding을 %로 ..
보통의 ssl 인증은 유료 서비스이다.하지만 무료 서비스도 존재한다. Lets' Encrypt 셋업 환경은 CentOS6.5 / php 5.3.3 / python 2.6 버전이다. yum install epel-releaserpm -ivh https://rhel6.iuscommunity.org/ius-release.rpmyum install python27 python27-devel python27-pip python27-setuptools python27-virtualenv python27-libs 페이지 이동 : https://github.com/certbot/certbot 파일 다운로드 압축 풀고 디렉토리로 이동 chmod 700 letsencrypt-auto./letsencrypt-auto cer..
전체 필드 이름 얻기, 전체 필드 이름 찾기 mr = db.runCommand({ "mapreduce" : "userlog_table", "map" : function() { for (var key in this) { emit(key, null); } }, "reduce" : function(key, stuff) { return null; }, "out": "userlog_table" + "_keys"}) db[mr.result].distinct("_id")
구글링 검색결과입니다.원본 : http://stackoverflow.com/questions/22581345/click-button-copy-to-clipboard-using-jquery 왠만한 브러우저에서 동작하는 것을 확인했습니다~ function CopyTest() {copyToClipboard(document.getElementById("resultData"));} function copyToClipboard(elem) { // create hidden text element, if it doesn't already exist var targetId = "_hiddenCopyText_"; var isInput = elem.tagName === "INPUT" || elem.tagName === "T..