Add nginx.conf

This commit is contained in:
xxq250 2025-04-21 10:49:39 +08:00
parent 74aa371aa1
commit 2201e9c7e8
1 changed files with 13 additions and 0 deletions

13
nginx.conf Normal file
View File

@ -0,0 +1,13 @@
user nginx;
events {
worker_connections 63353;
}
http {
server {
listen 4000;
location / {
proxy_pass http://forgeplus:5000;
}
}
}