ubuntu nginx http/3 with quic

0verfl0w767·2024년 12월 8일
1

https://tars.tistory.com/m/318

도움 많이 됬다.

server {
		...
        
        location / {
        	...
            
            # HTTP/3
        	add_header Alt-Svc 'h3=":443"; ma=86400';
        }
        
        # HTTP/3
        listen 443 quic;
        ssl_protocols TLSv1.3;

        http3 on;
        http2 on;
        
        ...
}

0개의 댓글