1
0
Fork 0

remove quic

This commit is contained in:
Lukas Wurzinger 2024-08-21 00:02:15 +02:00
parent a850cfda47
commit 9dbb4039c2
6 changed files with 6 additions and 14 deletions

View file

@ -28,7 +28,6 @@ in {
services.nginx.virtualHosts.${virtualHostName} = {
enableACME = true;
forceSSL = true;
quic = true;
locations."/".proxyPass = "http://${config.services.microbin.settings.MICROBIN_BIND}:${builtins.toString config.services.microbin.settings.MICROBIN_PORT}";
};

View file

@ -19,7 +19,6 @@ in {
services.nginx.virtualHosts.${virtualHostName} = {
enableACME = true;
forceSSL = true;
quic = true;
locations."/".proxyPass = "http://${config.services.miniflux.config.LISTEN_ADDR}";
};

View file

@ -1,11 +1,9 @@
{
config,
pkgs,
...
}: {
services.nginx = {
enable = true;
package = pkgs.nginxQuic;
recommendedBrotliSettings = true;
recommendedGzipSettings = true;
@ -31,7 +29,6 @@
${domain} = {
enableACME = true;
forceSSL = true;
quic = true;
root = "/var/www/${domain}";
};
@ -39,7 +36,6 @@
"log.${domain}" = {
enableACME = true;
forceSSL = true;
quic = true;
root = "/var/www/log.${domain}";
};

View file

@ -12,7 +12,6 @@ in {
services.nginx.virtualHosts.${virtualHostName} = {
enableACME = true;
forceSSL = true;
quic = true;
locations."/".proxyPass = "http://${config.services.syncthing.guiAddress}";
};

View file

@ -32,7 +32,6 @@ in {
services.nginx.virtualHosts.${virtualHostName} = {
enableACME = true;
forceSSL = true;
quic = true;
locations."/" = {
proxyPass = "http://${config.services.vaultwarden.config.ROCKET_ADDRESS}:${builtins.toString config.services.vaultwarden.config.ROCKET_PORT}";