목록HTTP (11)
준호씨의 블로그
맥북 마이그레이션 후 아파치 웹서버가 제대로 동작하지 않음 brew services 로는 상황 진단이 어려움 $ brew services restart httpd Stopping `httpd`... (might take a while) ==> Successfully stopped `httpd` (label: homebrew.mxcl.httpd) ==> Successfully started `httpd` (label: homebrew.mxcl.httpd) 메시지는 그럴싸 한데 실제로 httpd 가 안뜸. /usr/local/var/log/httpd/error_log 에도 로그가 안찍힌다. apachectl 로 시작 해 보면 에러 메시지를 볼 수 있다. $ apachectl start dyld: Symbol..
HTTP/2 에 관련된 내용은 한번 정리 해 보고 싶지만 일단 관련 글들만 좀 모아 본다. RFC 7540 나만 모르고 있던 - HTTP/2 2016.12.04 SPDY는 무엇인가? 2012.08.28 What is HTTP/2 - The Ultimate Guide 2018.01.15 HTTP vs HTTPS Test 제목은 HTTP vs HTTPS 이지만 사실 HTTP/1 vs HTTP/2 가 맞음. HTTP/2 는 기본적으로 보안 프로토콜이 적용 되어 있다. HTTP/2
php 에서 curl 라이브러리를 사용하려고 하니 라이브러리가 없어서 오류 발생. php 용 curl 라이브러리 설치 하는 방법 정리 ubuntu 기준 sudo apt-get install php5-curl
perl - HTTP::Tiny 로 http GET request 날리기 GET 요청 날리기 GET 요청 날리기 - parameter 추가 GET 요청 날리기 - header 추가 POST 요청은 다음에... 참고 HTTP::Tiny http://search.cpan.org/~dagolden/HTTP-Tiny-0.056/lib/HTTP/Tiny.pm junho85.pe.kr 의 후속 편. POST request 날리기입니다. POST 요청 날리기 with json #!/usr/bin/perl use strict; use warnings FATAL => 'all'; use Data::Dumper; use HTTP::Tiny; use JSON; my $http = HTTP::Tiny->new(); my %h..