Update FrontAdmin URLs to dev/stage domains

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-08 17:56:07 +03:00
parent efa7f826aa
commit 95846bde1e
4 changed files with 11 additions and 8 deletions
+2 -2
View File
@@ -1,3 +1,3 @@
#VITE_API_BASE_URL=https://admin-api.eventhub.local
VITE_WS_URL=wss://admin-ws.eventhub.local
VITE_API_BASE_URL=https://admin-api.dev.eventhub.local
VITE_WS_URL=wss://admin-ws.dev.eventhub.local
VITE_APP_TITLE=EventHub Admin
+2 -2
View File
@@ -1,3 +1,3 @@
#VITE_API_BASE_URL=https://admin-api.eventhub.local
VITE_WS_URL=wss://admin-ws.eventhub.local
VITE_API_BASE_URL=https://admin-api.stage.eventhub.local
VITE_WS_URL=wss://admin-ws.stage.eventhub.local
VITE_APP_TITLE=EventHub Admin
+2 -2
View File
@@ -1,5 +1,5 @@
#curl -v -k 'https://admin-api.eventhub.local/api/v1/admin/subscriptions?limit=20&offset=1' -H 'Accept: application/json, text/plain, */*' -H 'Accept-Language: ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7,hu;q=0.6' -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhZG1pbiIsImV4cCI6MTc3OTI3MzU1OCwiaWF0IjoxNzc5MTg3MTU4LCJyb2xlIjoic3VwZXJhZG1pbiIsInVzZXJfaWQiOiJKMlgzalBjRTFpYU9CSkgxbFRhUUJBIn0.tHgwrUItF790D0gE7NoSRQiGbgl80lvF3I0g3DOpbTw' -H 'Cache-Control: no-cache' -H 'Connection: keep-alive' -b 'grafana_session=7dd9380cd5241089924cf811d4df38b4; grafana_session_expiry=1779187380' -H 'Pragma: no-cache' -H 'Referer: http://localhost:5173/subscriptions' -H 'Sec-Fetch-Dest: empty' -H 'Sec-Fetch-Mode: cors' -H 'Sec-Fetch-Site: same-origin' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36' -H 'sec-ch-ua: "Chromium";v="148", "Google Chrome";v="148", "Not/A)Brand";v="99"' -H 'sec-ch-ua-mobile: ?0' -H 'sec-ch-ua-platform: "Windows"'
curl -v -k 'https://admin-api.eventhub.local/v1/admin/events?limit=20&offset=0&sort=id&order=asc' \
#curl -v -k 'https://admin-api.dev.eventhub.local/api/v1/admin/subscriptions?limit=20&offset=1' -H 'Accept: application/json, text/plain, */*' -H 'Accept-Language: ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7,hu;q=0.6' -H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhZG1pbiIsImV4cCI6MTc3OTI3MzU1OCwiaWF0IjoxNzc5MTg3MTU4LCJyb2xlIjoic3VwZXJhZG1pbiIsInVzZXJfaWQiOiJKMlgzalBjRTFpYU9CSkgxbFRhUUJBIn0.tHgwrUItF790D0gE7NoSRQiGbgl80lvF3I0g3DOpbTw' -H 'Cache-Control: no-cache' -H 'Connection: keep-alive' -b 'grafana_session=7dd9380cd5241089924cf811d4df38b4; grafana_session_expiry=1779187380' -H 'Pragma: no-cache' -H 'Referer: http://localhost:5173/subscriptions' -H 'Sec-Fetch-Dest: empty' -H 'Sec-Fetch-Mode: cors' -H 'Sec-Fetch-Site: same-origin' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36' -H 'sec-ch-ua: "Chromium";v="148", "Google Chrome";v="148", "Not/A)Brand";v="99"' -H 'sec-ch-ua-mobile: ?0' -H 'sec-ch-ua-platform: "Windows"'
curl -v -k 'https://admin-api.dev.eventhub.local/v1/admin/events?limit=20&offset=0&sort=id&order=asc' \
-H 'Accept: application/json, text/plain, */*' \
-H 'Accept-Language: ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7,hu;q=0.6' \
-H 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhZG1pbiIsImV4cCI6MTc3OTYzMDI3NSwiaWF0IjoxNzc5NTQzODc1LCJyb2xlIjoic3VwZXJhZG1pbiIsInVzZXJfaWQiOiJPRE05TjFFY1JWWmlJUGhSbVRMdjZ3In0.yAGwX5XJNC68WALUjDkhpoPPOugN1lEdGNyPDmbUleU' \
+5 -2
View File
@@ -1,17 +1,20 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
const apiBaseUrl = process.env.VITE_API_BASE_URL ?? 'https://admin-api.dev.eventhub.local';
const wsUrl = process.env.VITE_WS_URL ?? 'wss://admin-ws.dev.eventhub.local';
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/v1': {
target: 'https://admin-api.eventhub.local',
target: apiBaseUrl,
changeOrigin: true,
secure: false,
},
'/admin/ws': {
target: 'wss://admin-ws.eventhub.local',
target: wsUrl,
ws: true,
changeOrigin: true,
secure: false,