Compare commits

...

6 Commits

Author SHA1 Message Date
Giulio De Pasquale
9dadddd37c Merge branch 'master' of ssh://git.giugl.io/peperunas/nixos 2023-03-16 16:39:17 +01:00
Giulio De Pasquale
f5ada69bf9 Update lock 2023-03-16 16:39:09 +01:00
Giulio De Pasquale
19e317cc5e architect: Disable calibre and docker 2023-03-16 16:38:58 +01:00
Giulio De Pasquale
256a07ba71 Update lock 2023-03-15 00:54:58 +01:00
Giulio De Pasquale
08a2c3c493 nginx: Remove TLS version limitation 2023-02-27 21:26:36 +01:00
Giulio De Pasquale
7c195babbb nginx: Fix SSL handshake errors 2023-02-27 21:18:13 +01:00
3 changed files with 14 additions and 12 deletions

18
flake.lock generated
View File

@ -8,11 +8,11 @@
"utils": "utils"
},
"locked": {
"lastModified": 1676257154,
"narHash": "sha256-eW3jymNLpdxS5fkp9NWKyNtgL0Gqtgg1vCTofKXDF1g=",
"lastModified": 1678673526,
"narHash": "sha256-tMI1inGT9u4KWQml0w30dhWqQPlth1e9K/68sfDkEQA=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "2cb27c79117a2a75ff3416c3199a2dc57af6a527",
"rev": "74e0b590c0c8eb99548b8db40c323ff61a2f37c4",
"type": "github"
},
"original": {
@ -24,11 +24,11 @@
},
"nixos-unstable": {
"locked": {
"lastModified": 1677269633,
"narHash": "sha256-lp+v+nAddOA6wbW4FU7xk6f5eiiJKaCY2K94YZxrIAI=",
"lastModified": 1678980913,
"narHash": "sha256-042cM/+NT4BTM3tjNG3wrxsUVSanb77gNFbTS+hZBk0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b2c8125be6909f83e9438617214dcda061480c42",
"rev": "7dffac817f7499bd1afece96261675cfc7bf745d",
"type": "github"
},
"original": {
@ -40,11 +40,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1677179781,
"narHash": "sha256-+peLp16ruWLuTFHo0ZUbLlS1/meS/+RsWQQ9bUAzOh8=",
"lastModified": 1678872516,
"narHash": "sha256-/E1YwtMtFAu2KUQKV/1+KFuReYPANM2Rzehk84VxVoc=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "50c23cd4ff6c8344e0b4d438b027b3afabfe58dd",
"rev": "9b8e5abb18324c7fe9f07cb100c3cd4a29cda8b8",
"type": "github"
},
"original": {

View File

@ -34,8 +34,8 @@ in
./jellyfin.nix
./prosody.nix
./deluge.nix
./calibre.nix
./docker.nix
#./calibre.nix
#./docker.nix
./keycloak.nix
./lezzo.nix
./runas.nix

View File

@ -13,7 +13,6 @@
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
sslProtocols = "TLSv1.3";
virtualHosts."architect.devs.giugl.io" = {
default = true;
@ -46,6 +45,9 @@
makeLuaPath = lib.concatMapStringsSep ";" luaPath;
in
''
# https://stackoverflow.com/questions/38931468/nginx-reverse-proxy-error14077438ssl-ssl-do-handshake-failed
proxy_ssl_server_name on;
lua_package_path '${makeLuaPath extraPureLuaPackages};;';
lua_ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt;
lua_ssl_verify_depth 5;