Reapply "archive 삭제"

This reverts commit 69ab355bb9.
This commit is contained in:
2026-04-09 10:19:10 +09:00
parent 69ab355bb9
commit aec9ae8c43
245 changed files with 0 additions and 3799 deletions
@@ -1,20 +0,0 @@
```bash
npm install express
npm isntall http-proxy-middleware
```
``` js
const express = require('express');
const { createProxyMiddleware } = require('http-proxy-middleware');
const app = express();
const PORT = 9005;
// "/api"로 시작하는 모든 요청을 다른 서버로 포워딩합니다.
app.use('*', createProxyMiddleware({ target: 'http://192.168.101.67:8080', changeOrigin: true }));
// 서버 시작
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
});
```