Merge "添加nginx.conf"
diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 0000000..c9ea645
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,11 @@
+server {
+    listen 80;
+    server_name team12.10813352.xyz;  # 替换为你的域名
+
+    location /api {
+        proxy_pass http://localhost:12138;
+        proxy_set_header Host $host;
+        proxy_set_header X-Real-IP $remote_addr;
+        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+    }
+}
\ No newline at end of file