diff options
author | stuebinm | 2023-11-14 21:43:06 +0100 |
---|---|---|
committer | stuebinm | 2023-11-15 01:39:36 +0100 |
commit | b9f2405fdf68a9d04359f8efafb544df11528668 (patch) | |
tree | 5e7e5968bd0f72cc18e8212f0cb50c99439df5e3 /chaski | |
parent | 579dc4f19e4c4b36a927d93425b1f778a8ab4c86 (diff) |
bahnhof.name haskell rewrite
Diffstat (limited to 'chaski')
-rw-r--r-- | chaski/services/bahnhof-name.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chaski/services/bahnhof-name.nix b/chaski/services/bahnhof-name.nix index d11f7ec..7360372 100644 --- a/chaski/services/bahnhof-name.nix +++ b/chaski/services/bahnhof-name.nix @@ -10,7 +10,7 @@ path = [ pkgs.bahnhof-name ]; script = '' cd ${pkgs.bahnhof-name.outPath} - bin/bahnhofname + bin/bahnhof-name ''; }; @@ -18,7 +18,7 @@ let vhost = { enableACME = true; forceSSL = true; - locations."/".proxyPass = "http://localhost:2345"; + locations."/".proxyPass = "http://localhost:8080"; }; in builtins.listToAttrs (map (name: { inherit name; value = vhost; }) ["bahnhof.name" "ril100.bahnhof.name" |