Troubleshooting Cloudflare 1XXX errors on Cloudflare

2020-08-01 KENNETH 0

URL : https://support.cloudflare.com/hc/en-us/articles/360029779472-Troubleshooting-Cloudflare-1XXX-errors   Diagnose and resolve 1XXX errors for Cloudflare proxied sites. In this article Overview Error 1000: DNS points to prohibited IP Error 1001: DNS resolution error Error 1002: DNS points to Prohibited IP Error 1002: Restricted Error 1003 Access Denied: Direct IP Access Not Allowed Error 1004: Host Not Configured to Serve Web Traffic Error 1006, 1007, and 1008 Access Denied: Your IP address has been banned Error 1010: The owner of this website has banned your access based on your browser’s signature Error 1011: Access Denied (Hotlinking Denied) Error 1012: Access Denied Error 1013: HTTP hostname and TLS SNI hostname mismatch Error 1014: CNAME Cross-User Banned Error 1015: You are being rate limited Error 1016: Origin DNS error Error 1018: Could not find host Error 1019: Compute server error Error 1020: Access denied Error 1025: Please [ more… ]

[OPENSSL] key파일 생성 / 패스워드 생성, 제거, 확인

2020-07-10 KENNETH 1

  키파일 패스워드 확인 키파일에 패스워드가 설정 되어 있는지, 알고 있는 패스워드가 맞는지 확인 1. 키파일에 패스워드가 설정되지 않은 경우   2. 키파일에 패스워드가 설정된 경우     키파일 생성 및 변경   1. 패스워드 없이 키파일 생성하기 패스워드 확인 절차 없이 “RSA key ok” 반환   2. 생성된 키파일에 패스워드 추가 패스워드 확인 절차 추가됨   3. 키파일 생성시 패스워드 적용 패스워드 확인 절차 추가됨   4. 패스워드가 적용된 키파일의 패스워드 제거 패스워드 확인 절차 없이 “RSA key ok” 반환    

sitemap.html 파일에서 “제출된 URL이 ‘NOINDEX’로 설정되어 있습니다.”

2020-05-17 KENNETH 1

개요 구글웹마스터 사용중 프로그램 : 워드프레스 sitemap : XML-sitemap plugin 사용     발생오류 1. 오류위치 구글웹마스터도구 -> 색인 생성 범위 -> 상세정보   2. 오류내용 제출된 URL이 ‘NOINDEX’로 설정되어 있습니다.   3. 대상파일 sitemap.html 세상에나… sitemap.html에 대해서는 따로 설정을 해둔것도 없었음에도 갑자기 sitemap.html 이라니….     원인 워드프레스의 XML-Sitemap 이라는 플러그인 별다른 설정없이 “기본값”으로 활성화 시키면 sitemap.xml 파일뿐만 아니라 sitemap.html 도 활성화가 된다 정확히는 sitemap.xml 에 기본적으로 포함되는 sitemap-misc.xml 의 내용에 sitemap.html 이 포함되어 있기 때문에 구글웹마스터 에서는 sitemap.html 을 색인에 넣으려고 시도하고 해당 결과의 헤더에 noindex가 포함되어 있기 때문에 저런 오류가 발생하는 것     해결 간단한 해결은 sitemap-misc.xml 의 내용에 “sitemap.html”이 포함되지 않도록 해주면 된다. \ “include sitemap in HTML format” 옵션을 체크를 해제해 주시면 되겠다. 이후에는 sitemap.html 이 제거되어 있을것이다.

HTTPD ERROR AH00287 AH00286 raising the MaxRequestWorkers setting

2020-05-15 KENNETH 0

AH00287 AH00286 raising the MaxRequestWorkers setting   에러로그 AH00287: server is within MinSpareThreads of MaxRequestWorkers, consider raising the MaxRequestWorkers setting AH00286: server reached MaxRequestWorkers setting, consider raising the MaxRequestWorkers setting     조치사항   주의사항 MaxRequestWorkers 설정값을 올려줘야 하는데 그냥 무심코 올리면 이런식으로 경고가 발생한다 AH00316: WARNING: MaxRequestWorkers of 512 is not an integer multiple of ThreadsPerChild of 25, decreasing to nearest multiple 500, for a maximum of 20 servers. AH00318: WARNING: MaxRequestWorkers of 500 would require 20 servers and would exceed ServerLimit of 16, decreasing to 400. To increase, please see the ServerLimit directive. AH00316 : ThreadsPerChild 수치의 배수가 되게끔 설정해라 AH00318 : MaxRequestWorkers의 수치를 ThreadsPerChild의 수치로 나눈 몫이 ServerLimit의 수치보다 높아서는 안된다 ServerLimit 를 따로 설정하지 않은 경우 기본값 : 16  

How to Remove the Category From WordPress URL?

2020-04-29 KENNETH 0

워드프레스 주소줄에서 “category” 문자열 제거 하기   개요 1. 카테고리가 있다고 가정하자 free, good, news 등등 카테고리 접근시 기본URL : https://yourdomain.com/category/free 2단계 이상의 카테고리(하위카테고리)를 사용 하고 싶다 2. URL 중간의 category를 제거했으면 좋겠다. 뭔가 불필요하게 주소줄도 길어지고 category 문자열이 없으면 카테고리를 마치 디렉토리 처럼 사용하는것도 좋지 않을까? 3. 기준 버전 wordpress 5.4 (작성일 “2020.04.28” 당시 최신)     방법1. 워드프레스 기본기능 이용하기   1. 개요 사실 이걸로 구현하는 것이 가장 좋다는 생각이 들었다 플러그인에 의존하는것도 마음에 안들고 .htaccess 를 수정하는 것도 싫다.   2. 퍼머링크(permalink) 사용 : 관리자 -> 설정 -> 고유주소 일반설정 에서 사용자 정의 구조 선택 세부설정 : /%category%/%postname%/ 옵션의 카테고리 기반 : “.” 기호 입력   3. 결과 카테고리 명 : free 게시물 명 : post1 기본URL : https://jirak.net/category/free/post1 변경URL : https://jirak.net/free/post1 아!!! 됐다!!! 드디어 원하는 결과가 나와ㅆ…..   4. 문제점 카테고리가 2단계 이상으로 이루어졌을 경우 즉, [ more… ]