Compare commits
6 Commits
40921b860a
...
9dadddd37c
Author | SHA1 | Date | |
---|---|---|---|
|
9dadddd37c | ||
|
f5ada69bf9 | ||
|
19e317cc5e | ||
|
256a07ba71 | ||
|
08a2c3c493 | ||
|
7c195babbb |
18
flake.lock
generated
18
flake.lock
generated
@ -8,11 +8,11 @@
|
|||||||
"utils": "utils"
|
"utils": "utils"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1676257154,
|
"lastModified": 1678673526,
|
||||||
"narHash": "sha256-eW3jymNLpdxS5fkp9NWKyNtgL0Gqtgg1vCTofKXDF1g=",
|
"narHash": "sha256-tMI1inGT9u4KWQml0w30dhWqQPlth1e9K/68sfDkEQA=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "2cb27c79117a2a75ff3416c3199a2dc57af6a527",
|
"rev": "74e0b590c0c8eb99548b8db40c323ff61a2f37c4",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -24,11 +24,11 @@
|
|||||||
},
|
},
|
||||||
"nixos-unstable": {
|
"nixos-unstable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1677269633,
|
"lastModified": 1678980913,
|
||||||
"narHash": "sha256-lp+v+nAddOA6wbW4FU7xk6f5eiiJKaCY2K94YZxrIAI=",
|
"narHash": "sha256-042cM/+NT4BTM3tjNG3wrxsUVSanb77gNFbTS+hZBk0=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "b2c8125be6909f83e9438617214dcda061480c42",
|
"rev": "7dffac817f7499bd1afece96261675cfc7bf745d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@ -40,11 +40,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1677179781,
|
"lastModified": 1678872516,
|
||||||
"narHash": "sha256-+peLp16ruWLuTFHo0ZUbLlS1/meS/+RsWQQ9bUAzOh8=",
|
"narHash": "sha256-/E1YwtMtFAu2KUQKV/1+KFuReYPANM2Rzehk84VxVoc=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "50c23cd4ff6c8344e0b4d438b027b3afabfe58dd",
|
"rev": "9b8e5abb18324c7fe9f07cb100c3cd4a29cda8b8",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -34,8 +34,8 @@ in
|
|||||||
./jellyfin.nix
|
./jellyfin.nix
|
||||||
./prosody.nix
|
./prosody.nix
|
||||||
./deluge.nix
|
./deluge.nix
|
||||||
./calibre.nix
|
#./calibre.nix
|
||||||
./docker.nix
|
#./docker.nix
|
||||||
./keycloak.nix
|
./keycloak.nix
|
||||||
./lezzo.nix
|
./lezzo.nix
|
||||||
./runas.nix
|
./runas.nix
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
recommendedOptimisation = true;
|
recommendedOptimisation = true;
|
||||||
recommendedProxySettings = true;
|
recommendedProxySettings = true;
|
||||||
recommendedTlsSettings = true;
|
recommendedTlsSettings = true;
|
||||||
sslProtocols = "TLSv1.3";
|
|
||||||
|
|
||||||
virtualHosts."architect.devs.giugl.io" = {
|
virtualHosts."architect.devs.giugl.io" = {
|
||||||
default = true;
|
default = true;
|
||||||
@ -46,6 +45,9 @@
|
|||||||
makeLuaPath = lib.concatMapStringsSep ";" luaPath;
|
makeLuaPath = lib.concatMapStringsSep ";" luaPath;
|
||||||
in
|
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_package_path '${makeLuaPath extraPureLuaPackages};;';
|
||||||
lua_ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt;
|
lua_ssl_trusted_certificate /etc/ssl/certs/ca-certificates.crt;
|
||||||
lua_ssl_verify_depth 5;
|
lua_ssl_verify_depth 5;
|
||||||
|
Loading…
Reference in New Issue
Block a user