FreeBSD14 + Nginx + HTTP/3 QUIC
開発環境でNginxをビルドしてHTTP/3 QUICを試したときの覚書。 Gemini 2.5 Proと対話。 環境: FreeBSD 14.3-RELEASE-p4 1. Nginxをビルド 現在のバージョンとビルドオプションを確認。 見やすく改行付きのコマンド。 # nginx -V 2>&1 | sed 's/ --/\n--/g' nginx version: nginx/1.28.0 built with OpenSSL 3.0.15+quic 3 Sep 2024 TLS SNI support enabled configure arguments: --prefix=/usr/local/etc/nginx --with-cc-opt='-I /usr/local/include' --conf-path=/usr/local/etc/nginx/nginx.conf --sbin-path=/usr/local/sbin/nginx --pid-path=/var/run/nginx.pid --error-log-path=/var/log/nginx/error.log --user=www --group=www --with-compat --with-pcre --with-file-aio --http-client-body-temp-path=/var/tmp/nginx/client_body_temp --http-fastcgi-temp-path=/var/tmp/nginx/fastcgi_temp --http-proxy-temp-path=/var/tmp/nginx/proxy_temp --http-scgi-temp-path=/var/tmp/nginx/scgi_temp --http-uwsgi-temp-path=/var/tmp/nginx/uwsgi_temp --http-log-path=/var/log/nginx/access.log --with-http_v2_module --with-http_v3_module --with-http_gunzip_module --with-http_gzip_static_module --wit...