🐳 FSP Network Gen2 Server Infrastructure - Nginx
10K+
FSP Network Gen2 Server Infrastructure - Nginx
docker pull fspnetwork/nginx
/etc/nginx/conf.d/etc/nginx/sites-enabled/data/conf//var/log/nginxQUICedge tag now add QUIC, the following configuration file can be used as a starting point to enable HTTP/3 support:
server {
# Enable QUIC, HTTP/3 and HTTP/2 on both IPv4 and IPv6.
listen 443 ssl http2;
listen 443 quic;
listen [::]:443 ssl http2;
listen [::]:443 quic;
ssl_certificate cert.crt;
ssl_certificate_key cert.key;
# Add HSTS header
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
# Add Alt-Svc header to negotiate HTTP/3.
add_header alt-svc 'h3-23=":443"; ma=86400';
}
The code in this repository, unless otherwise noted, is Anti-996 licensed. See the LICENSE file in this repository.
Content type
Image
Digest
sha256:af1ba240f…
Size
67.2 MB
Last updated
over 2 years ago
docker pull fspnetwork/nginx