From 2201e9c7e80d97e8575eba3b040bd7cad3e6cad9 Mon Sep 17 00:00:00 2001 From: xxq250 Date: Mon, 21 Apr 2025 10:49:39 +0800 Subject: [PATCH] Add nginx.conf --- nginx.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..8e6abb2 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,13 @@ +user nginx; + +events { + worker_connections 63353; +} +http { + server { + listen 4000; + location / { + proxy_pass http://forgeplus:5000; + } + } +} \ No newline at end of file