vaultwarden and postgresql
This commit is contained in:
parent
d0c72f5d3c
commit
55eb4f5ddc
10 changed files with 228 additions and 24 deletions
20
imports/caddy.nix
Normal file
20
imports/caddy.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.caddy = {
|
||||
enable = true;
|
||||
|
||||
virtualHosts."http://navidrome.mymarseille.duckdns.org".extraConfig = ''
|
||||
reverse_proxy localhost:4533
|
||||
'';
|
||||
|
||||
virtualHosts."http://notes.mymarseille.duckdns.org".extraConfig = ''
|
||||
reverse_proxy localhost:8001
|
||||
'';
|
||||
|
||||
virtualHosts."http://vault.mymarseille.duckdns.org".extraConfig = ''
|
||||
reverse_proxy localhost:8000
|
||||
'';
|
||||
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue