Varnish - REST API를 위한 설정

1 개요[ | ]

Varnish API를 위한 설정
aconf
Copy
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 참고[ | ]