summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bragi.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/bragi.nix b/bragi.nix
index a217204a..5061d57a 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -373,12 +373,12 @@ in rec {
373 listen *:80; 373 listen *:80;
374 server_name _; 374 server_name _;
375 375
376 location /thermoprint/api { 376 location /thermoprint/api/ {
377 proxy_pass http://localhost:8080; 377 proxy_pass http://localhost:8080/;
378 } 378 }
379 379
380 location /thermoprint { 380 location /thermoprint/ {
381 proxy_pass http://localhost:8081; 381 proxy_pass http://localhost:8081/;
382 } 382 }
383 } 383 }
384 ''; 384 '';