MoinQ:

1. HTTP/3

http://nginx.org/en/docs/quic.html

Support for QUIC and HTTP/3

http://nginx.org/en/docs/http/ngx_http_v3_module.html#example

Module ngx_http_v3_module

1.1. Example Configuration

    http {
        log_format quic '$remote_addr - $remote_user [$time_local] '
                        '"$request" $status $body_bytes_sent '
                        '"$http_referer" "$http_user_agent" "$http3"';

        access_log logs/access.log quic;

        server {
            # for better compatibility it's recommended
            # to use the same port for http/3 and https
            listen 8443 quic reuseport;
            listen 8443 ssl;

            ssl_certificate     certs/example.com.crt;
            ssl_certificate_key certs/example.com.key;

            location / {
                # used to advertise the availability of HTTP/3
                add_header Alt-Svc 'h3=":8443"; ma=86400';
            }
        }
    }


CategoryDns CategoryWatch CategoryTemplate

MoinQ: nginx/HTTP/3 (last edited 2023-11-18 11:20:43 by ToshinoriMaeno)