From 5da47514f7eb9dc0a7de43578ccd494d44538f40 Mon Sep 17 00:00:00 2001 From: Ward Date: Fri, 5 Apr 2024 10:56:21 +1300 Subject: [PATCH] Fixed reverse proxy ports --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6f66a57b..2842479f 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ invidious.example.com { } materialious.example.com { - reverse_proxy localhost:5173 + reverse_proxy localhost:3001 } ``` @@ -88,7 +88,7 @@ server { server_name materialious.example.com; location / { - proxy_pass http://localhost:5173; + proxy_pass http://localhost:3001; } } ```