Partial rollout of HTTP/3
This commit is contained in:
parent
6d61d05261
commit
4507d9bdc8
|
@ -9,11 +9,14 @@ in {
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
virtualHosts.${dom} = {
|
virtualHosts.${dom} = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
|
||||||
|
quic = true;
|
||||||
|
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:${toString httpIntPort}";
|
proxyPass = "http://127.0.0.1:${toString httpIntPort}";
|
||||||
};
|
};
|
||||||
forceSSL = true;
|
|
||||||
enableACME = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{...}: {
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./vcnotifier.nix
|
./vcnotifier.nix
|
||||||
# ./nodemusicbot.nix
|
# ./nodemusicbot.nix
|
||||||
|
@ -15,6 +15,8 @@
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.nginxQuic;
|
||||||
|
|
||||||
recommendedZstdSettings = true;
|
recommendedZstdSettings = true;
|
||||||
recommendedGzipSettings = true;
|
recommendedGzipSettings = true;
|
||||||
recommendedBrotliSettings = true;
|
recommendedBrotliSettings = true;
|
||||||
|
|
|
@ -6,11 +6,12 @@
|
||||||
in {
|
in {
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
virtualHosts.${dom} = {
|
virtualHosts.${dom} = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:${toString httpIntPort}";
|
proxyPass = "http://127.0.0.1:${toString httpIntPort}";
|
||||||
};
|
};
|
||||||
forceSSL = true;
|
|
||||||
enableACME = true;
|
|
||||||
};
|
};
|
||||||
streamConfig = ''
|
streamConfig = ''
|
||||||
upstream gitea {
|
upstream gitea {
|
||||||
|
|
|
@ -6,6 +6,8 @@ in {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
|
|
||||||
|
quic = true;
|
||||||
|
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
tryFiles = "$uri $uri/ =404";
|
tryFiles = "$uri $uri/ =404";
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
|
|
@ -9,11 +9,12 @@
|
||||||
in {
|
in {
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
virtualHosts.${domHost} = {
|
virtualHosts.${domHost} = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:${toString httpIntPort}";
|
proxyPass = "http://127.0.0.1:${toString httpIntPort}";
|
||||||
};
|
};
|
||||||
forceSSL = true;
|
|
||||||
enableACME = true;
|
|
||||||
};
|
};
|
||||||
virtualHosts.${domDelegate} = {
|
virtualHosts.${domDelegate} = {
|
||||||
locations."/.well-known/matrix/client" = {
|
locations."/.well-known/matrix/client" = {
|
||||||
|
|
Loading…
Reference in New Issue