diff options
author | Emile <git@emile.space> | 2024-08-02 23:52:32 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-08-02 23:52:32 +0200 |
commit | 0e0b47b3cf1de2ea4c780ed488490a642a254f1e (patch) | |
tree | a9f0a391a7ed6bbb948a30acb14c189b2500f780 /nix/hosts/corrino/www/pgweb.emile.space.nix | |
parent | 4b220f4c5802bca0c887a4e1e70e8dad091548e9 (diff) |
corrino ports
Diffstat (limited to 'nix/hosts/corrino/www/pgweb.emile.space.nix')
-rw-r--r-- | nix/hosts/corrino/www/pgweb.emile.space.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/nix/hosts/corrino/www/pgweb.emile.space.nix b/nix/hosts/corrino/www/pgweb.emile.space.nix deleted file mode 100644 index 1ce8063..0000000 --- a/nix/hosts/corrino/www/pgweb.emile.space.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ pkgs, ... }: - -let - ports = import ../ports.nix; -in { - services.nginx.virtualHosts."pgweb.emile.space" = { - forceSSL = true; - enableACME = true; - - locations = { - "/" = { - proxyPass = "http://127.0.0.1:${toString ports.pgweb}"; - }; - }; - }; - - environment.systemPackages = with pkgs; [ pgweb ]; - - # systemd.services.pgweb = { - # wantedBy = [ "multi-user.target" ]; - # serviceConfig.ExecStart = "${pkgs.pgweb}/bin/pwgeb"; - # }; -} |