From f17ed3885d02a2806057e868b3d103d5db24a32e Mon Sep 17 00:00:00 2001 From: wandermottasiqu <42314790-wandermottasiqu@users.noreply.replit.com> Date: Sun, 8 Jun 2025 20:26:05 +0000 Subject: [PATCH] Checkpoint before assistant change: Configure the web server to properly direct outside traffic to the application Adds port configurations to the .replit file, mapping external port 80 to local port 5000. Replit-Commit-Author: Assistant --- .replit | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.replit b/.replit index d67a783..9b3e51f 100644 --- a/.replit +++ b/.replit @@ -26,3 +26,7 @@ waitForPort = 5000 [deployment] run = ["sh", "-c", "python3 -m http.server 5000"] + +[[ports]] +localPort = 5000 +externalPort = 80