]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commit - README.md
refresh nginx config and optimize delivery (#3313)
authorRigel Kent <sendmemail@rigelk.eu>
Mon, 16 Nov 2020 18:16:49 +0000 (19:16 +0100)
committerGitHub <noreply@github.com>
Mon, 16 Nov 2020 18:16:49 +0000 (19:16 +0100)
commit5f59cf077fd9f9c0c91c7bb56efbfd5db103bff2
treee9153bdc5891a8c09f241f00e624edda82f76f62
parent12c8a46362f1f92d1c1a34991a76c55f625a80c6
refresh nginx config and optimize delivery (#3313)

refactors the Nginx configuration for the following points:
- update tls version to include 1.3 by default. so far it was not included by default to make room for previous versions of Nginx, but since 2018 Debian stable has included Nginx in version 1.14.1, and tls 1.3 is available since Nginx 1.13.0.
- clearly indicate that new minimum required version.
- update outdated ssl_ciphers to remove cipher required to support android 4.4, since that version is unsupported since March 2020.
- reordered configuration in sections for easier maintenance: performance optimizations are separated from the vital application/websocket parts.
- move parts that always require manual configuration at the top: peertube host and server name, use server_name
- move peertube host to a more flexible upstream block: it allows to configure it in one place instead of 3, and is future-proof regarding load-balancing.
- simplified port 80 block: Let’s Encrypt supports 301 redirects.
- group certificate-related config together.
- remove reslover config: it defaults to /etc/resolv.conf which is more than enough.
- align values with their neighbors for easier reading
- always specify units
- always specify default values when they differ from the values set
- use ’m’ for minutes, ’M’ for megabytes
- add consensual optimizations wrt file serving:
  - add timeout optimizations
  - add file descriptor cache optimizations
  - enable sendfile with chunk size > rate limit
  - enable threading
  - tcp optimizations
  - point to further, more system-specific optimizations in the section description
- CDN configuration reduced to one line change
README.md
support/nginx/peertube