defer tls/ssl to hyperserver
This commit is contained in:
parent
f57f9a37f6
commit
5f7cb33867
2
ai.nix
2
ai.nix
|
@ -9,8 +9,6 @@
|
|||
in {
|
||||
services.nginx.virtualHosts = {
|
||||
${domain} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:9876/";
|
||||
proxyWebsockets = true;
|
||||
|
|
|
@ -1,19 +1,13 @@
|
|||
{ ... }:
|
||||
|
||||
let
|
||||
{...}: let
|
||||
domain = "books.sondell.org";
|
||||
in
|
||||
{
|
||||
in {
|
||||
#
|
||||
services.audiobookshelf = {
|
||||
enable = true;
|
||||
port = 8000;
|
||||
};
|
||||
|
||||
|
||||
services.nginx.virtualHosts.${domain} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
default = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:8000/";
|
||||
|
@ -21,4 +15,3 @@ in
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
22
coturn.nix
22
coturn.nix
|
@ -44,23 +44,22 @@
|
|||
# open the firewall
|
||||
networking.firewall = {
|
||||
interfaces.enp2s0 = let
|
||||
range = with config.services.coturn; [ {
|
||||
from = min-port;
|
||||
to = max-port;
|
||||
} ];
|
||||
in
|
||||
{
|
||||
range = with config.services.coturn; [
|
||||
{
|
||||
from = min-port;
|
||||
to = max-port;
|
||||
}
|
||||
];
|
||||
in {
|
||||
allowedUDPPortRanges = range;
|
||||
allowedUDPPorts = [ 3478 5349 ];
|
||||
allowedTCPPortRanges = [ ];
|
||||
allowedTCPPorts = [ 3478 5349 ];
|
||||
allowedUDPPorts = [3478 5349];
|
||||
allowedTCPPortRanges = [];
|
||||
allowedTCPPorts = [3478 5349];
|
||||
};
|
||||
};
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
virtualHosts."turn.sondell.org" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
};
|
||||
};
|
||||
# get a certificate
|
||||
|
@ -82,4 +81,3 @@
|
|||
];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
2
dufs.nix
2
dufs.nix
|
@ -36,8 +36,6 @@ in {
|
|||
};
|
||||
};
|
||||
services.nginx.virtualHosts.${domain} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:${port}/";
|
||||
proxyWebsockets = true;
|
||||
|
|
|
@ -17,8 +17,6 @@ in {
|
|||
};
|
||||
|
||||
services.nginx.virtualHosts.${domain} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:${toString port}/";
|
||||
proxyWebsockets = true;
|
||||
|
|
|
@ -35,8 +35,6 @@ in {
|
|||
};
|
||||
|
||||
services.nginx.virtualHosts.${domain} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:8080/";
|
||||
proxyWebsockets = true;
|
||||
|
|
|
@ -68,8 +68,6 @@ in {
|
|||
};
|
||||
|
||||
services.nginx.virtualHosts.${domain} = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:3000/";
|
||||
};
|
||||
|
|
|
@ -3,8 +3,6 @@
|
|||
domain2 = "start.sondell.org";
|
||||
port = "8118";
|
||||
hostSettings = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:${port}/";
|
||||
proxyWebsockets = true;
|
||||
|
|
13
jellyfin.nix
13
jellyfin.nix
|
@ -1,23 +1,16 @@
|
|||
{ config, ... }:
|
||||
|
||||
let
|
||||
{config, ...}: let
|
||||
domain = "jelly.sondell.org";
|
||||
# derp = "hi";
|
||||
in
|
||||
{
|
||||
# derp = "hi";
|
||||
in {
|
||||
#
|
||||
services.jellyfin = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
|
||||
services.nginx.virtualHosts.${domain} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:8096/";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
39
matrix.nix
39
matrix.nix
|
@ -1,6 +1,8 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
domain = "sondell.org";
|
||||
hostName = "matrix";
|
||||
fqdn = "${hostName}.${domain}";
|
||||
|
@ -12,8 +14,7 @@ let
|
|||
add_header Access-Control-Allow-Origin *;
|
||||
return 200 '${builtins.toJSON data}';
|
||||
'';
|
||||
in
|
||||
{
|
||||
in {
|
||||
#
|
||||
services.matrix-synapse = {
|
||||
enable = true;
|
||||
|
@ -29,31 +30,27 @@ in
|
|||
x_forwarded = true;
|
||||
resources = [
|
||||
{
|
||||
names = [ "client" "federation" ];
|
||||
names = ["client" "federation"];
|
||||
compress = true;
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
initialScript = pkgs.writeText "synapse-init.sql" ''
|
||||
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
|
||||
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
|
||||
TEMPLATE template0
|
||||
LC_COLLATE = "C"
|
||||
LC_CTYPE = "C";
|
||||
'';
|
||||
};
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
initialScript = pkgs.writeText "synapse-init.sql" ''
|
||||
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
|
||||
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
|
||||
TEMPLATE template0
|
||||
LC_COLLATE = "C"
|
||||
LC_CTYPE = "C";
|
||||
'';
|
||||
};
|
||||
|
||||
services.nginx.virtualHosts = {
|
||||
${fqdn} = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
# locations."/".extraConfig = ''
|
||||
# return 404;
|
||||
# '';
|
||||
|
@ -66,7 +63,6 @@ services.postgresql = {
|
|||
|
||||
${domain} = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
# locations."/" = {
|
||||
# proxyPass = "http://localhost:8008";
|
||||
# };
|
||||
|
@ -83,4 +79,3 @@ services.postgresql = {
|
|||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -64,10 +64,10 @@ in {
|
|||
|
||||
nginx.virtualHosts = {
|
||||
${domain} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
# Use DNS Challenege.
|
||||
# acmeRoot = null;
|
||||
# forceSSL = true;
|
||||
# enableACME = true;
|
||||
# # Use DNS Challenege.
|
||||
# # acmeRoot = null;
|
||||
};
|
||||
};
|
||||
postgresql.enable = true;
|
||||
|
@ -90,6 +90,9 @@ in {
|
|||
# Let NixOS install and configure Redis caching automatically.
|
||||
configureRedis = true;
|
||||
settings = {
|
||||
trusted_proxies = [
|
||||
"192.168.1.199"
|
||||
];
|
||||
maintenance_window_start = 1;
|
||||
};
|
||||
extraOptions = {
|
||||
|
@ -112,7 +115,7 @@ in {
|
|||
inherit mail calendar contacts notes onlyoffice cookbook spreed memories previewgenerator;
|
||||
};
|
||||
config = {
|
||||
overwriteProtocol = "https";
|
||||
# overwriteProtocol = "https";
|
||||
defaultPhoneRegion = "SE";
|
||||
dbtype = "pgsql";
|
||||
adminuser = "admin";
|
||||
|
@ -137,9 +140,9 @@ in {
|
|||
hostname = "office.sondell.org";
|
||||
jwtSecretFile = "/etc/nixos/.secrets/onlyoffice.jwt";
|
||||
};
|
||||
services.nginx.virtualHosts."office.sondell.org" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
# locations."/".proxyPass = "http://12:8123";
|
||||
};
|
||||
# services.nginx.virtualHosts."office.sondell.org" = {
|
||||
# forceSSL = true;
|
||||
# enableACME = true;
|
||||
# # locations."/".proxyPass = "http://12:8123";
|
||||
# };
|
||||
}
|
||||
|
|
|
@ -31,8 +31,6 @@ in {
|
|||
};
|
||||
};
|
||||
services.nginx.virtualHosts.${domain} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:${port}/";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue