Varnish - REST API를 위한 설정

1 개요[ | ]

Varnish API를 위한 설정
sub vcl_recv {
	... (생략)
	if ( req.method == "POST" || req.method == "DELETE" ) {
		if ( req.url ~ "/api/common-round" ) {
			ban("req.url ~ /api/common-round");
		}
		return(pass);
	}
	... (생략)
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}