From 6968c57df247539f3568b667365ab0c5da7a444d Mon Sep 17 00:00:00 2001 From: Jared Date: Mon, 6 Jan 2025 00:52:17 -0700 Subject: [PATCH] create an nginx.conf file --- nginx.conf | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 000000000000..fc545c981da9 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,6 @@ +server { + server_name docs.blamejared.com; + location / { + proxy_pass http://127.0.0.1:2901; + } +} \ No newline at end of file