Sign inSign up

fspnetwork/nginx

By fspnetwork

•Updated over 2 years ago

🐳 FSP Network Gen2 Server Infrastructure - Nginx

Image
0

10K+

fspnetwork/nginx repository overview

⁠Nginx

FSP Network Gen2 Server Infrastructure - Nginx

MicroBadger Size LICENSE 996.icu

⁠Supported tags

⁠Supported Package Registry

⁠Usage

docker pull fspnetwork/nginx

⁠Directory settings

  • /etc/nginx/conf.d
  • /etc/nginx/sites-enabled
  • /data/conf/
  • /var/log/nginx

⁠Running QUIC

edge⁠ 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';
}

⁠LICENSE

The code in this repository, unless otherwise noted, is Anti-996⁠ licensed. See the LICENSE file in this repository.

⁠more

Tag summary

Content type

Image

Digest

sha256:af1ba240f…

Size

67.2 MB

Last updated

over 2 years ago

docker pull fspnetwork/nginx