-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·57 lines (48 loc) · 2.04 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
const express = require("express");
const cors = require("cors");
const dotenv = require("dotenv");
const path = require("path");
const app = express();
dotenv.config();
// Массив разрешенных источников
const allowedOrigins = [
"https://aqua-book.ru",
"http://localhost:5000"
];
// Настройка CORS с проверкой разрешенных источников
app.use(cors({
origin: function (origin, callback) {
// разрешить запросы без источника (например, мобильные приложения или curl запросы)
if (!origin) return callback(null, true);
if (allowedOrigins.indexOf(origin) === -1) {
const msg = 'Политика CORS для этого сайта не позволяет доступ с указанного источника.';
return callback(new Error(msg), false);
}
return callback(null, true);
}
}));
// Использование парсера JSON для всех маршрутов до их определения
app.use(express.json());
// Обслуживание статических файлов из папки build
app.use(express.static(path.join(__dirname, 'build')));
// Регистрация API маршрутов
app.use('/api', require('./api/routes/routes'));
// Обработка всех остальных маршрутов и возвращение index.html
app.get('*', (req, res) => {
const filePath = path.join(__dirname, 'build', 'index.html');
res.sendFile(filePath, (err) => {
if (err) {
res.status(500).send(err);
}
});
});
// Обработка ошибок
app.use((err, req, res, next) => {
console.error(err.stack);
res.status(500).send("Something broke!");
});
// Запуск сервера
const PORT = process.env.PORT || 3000; // Порт для основного приложения
app.listen(PORT, () => {
console.log(`Сервер запущен на порту ${PORT}`);
});