Skip to content

Commit ba7344d

Browse files
committed
feat(): proxy backend
1 parent 5de4496 commit ba7344d

File tree

6 files changed

+92
-9
lines changed

6 files changed

+92
-9
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ logs
2323
.env.*
2424
!.env.example
2525
/.vs
26+
.pnpm-store*

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"dependencies": {
1414
"@material-symbols/font-400": "^0.27.0",
1515
"@vueuse/core": "^11.3.0",
16+
"http-proxy-middleware": "^3.0.3",
1617
"nuxt": "^3.14.159",
1718
"vue": "latest",
1819
"vue-router": "latest"

plugins/websocket.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import { useEventBus } from '@vueuse/core';
22

33
export default defineNuxtPlugin((nuxtApp) => {
4-
// Determine WebSocket protocol based on current protocol
54
const protocol = window.location.protocol === 'https:' ? 'wss' : 'ws';
6-
7-
// Always connect to the backend on localhost:8000
8-
const websocketUrl = `${protocol}://127.0.0.1:8000/ws/logs`; // Backend WebSocket URL
5+
const websocketUrl = `${protocol}://${window.location.host}/ws/logs`; // Relative path
96
const socket = new WebSocket(websocketUrl);
107

118
const logBus = useEventBus('log-bus'); // Initialize the event bus

pnpm-lock.yaml

+59
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/middleware/proxy.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { createProxyMiddleware } from 'http-proxy-middleware';
2+
3+
export default defineEventHandler(async (event) => {
4+
const reqUrl = event.req.url;
5+
6+
// Apply the proxy only for specific routes (e.g., /api and /ws)
7+
if (reqUrl.startsWith('/api') || reqUrl.startsWith('/ws')) {
8+
const proxy = createProxyMiddleware({
9+
target: 'http://localhost:8000', // Backend server
10+
changeOrigin: true,
11+
ws: true, // Enable WebSocket proxying
12+
pathRewrite: {
13+
'^/api': '', // Remove '/api' prefix when forwarding
14+
'^/ws': '/ws', // Keep '/ws' prefix
15+
},
16+
});
17+
18+
return new Promise((resolve, reject) => {
19+
proxy(event.req, event.res, (err) => {
20+
if (err) {
21+
console.error('[Proxy Error]:', err);
22+
reject(err);
23+
} else {
24+
resolve();
25+
}
26+
});
27+
});
28+
}
29+
});

services/status.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
export const statusRepository = () => {
2-
// Determine the API base URL dynamically based on the frontend's location
3-
const protocol = window.location.protocol;
4-
const hostname = window.location.hostname;
5-
const backendPort = 8000; // Set the backend port
6-
const apiBaseUrl = `${protocol}//${hostname}:${backendPort}`;
2+
const apiBaseUrl = `${window.location.origin}/api`;
73
return {
84
async getServiceStatus(serviceId) {
95
return await fetch(`${apiBaseUrl}/service-status/${serviceId}`, {

0 commit comments

Comments
 (0)