45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
![]() |
const express = require("express");
|
||
|
const cors = require("cors");
|
||
|
const fs = require("fs");
|
||
|
const https = require("https");
|
||
|
const http = require("http");
|
||
|
const path = require("path");
|
||
|
const ping = require("ping");
|
||
|
const status = require("./status/server")
|
||
|
|
||
|
const app = express();
|
||
|
const PORT = 2589;
|
||
|
|
||
|
const key = "/etc/letsencrypt/live/blahaj.tr/privkey.pem"
|
||
|
const cert = "/etc/letsencrypt/live/blahaj.tr/fullchain.pem"
|
||
|
|
||
|
app.use(cors());
|
||
|
app.use("/status", status);
|
||
|
|
||
|
// Try to load SSL Certificates
|
||
|
try {
|
||
|
const sslOptions = {
|
||
|
key: fs.readFileSync(key),
|
||
|
cert: fs.readFileSync(cert),
|
||
|
};
|
||
|
|
||
|
// Start HTTPS Server if certificates are available
|
||
|
https.createServer(sslOptions, app).listen(PORT, () => {
|
||
|
console.log(`API running securely at https://localhost:${PORT}`);
|
||
|
});
|
||
|
} catch (e) {
|
||
|
// If certificate loading fails, start HTTP server instead
|
||
|
if (e.code === 'ENOENT') {
|
||
|
console.warn(`SSL certificate file(s) not found: ${e.path}`);
|
||
|
} else {
|
||
|
console.warn(`Error loading SSL certificates: ${e.message}`);
|
||
|
}
|
||
|
|
||
|
console.log("Starting server without SSL...");
|
||
|
|
||
|
// Start HTTP Server as fallback
|
||
|
http.createServer(app).listen(PORT, () => {
|
||
|
console.log(`API running insecurely at http://localhost:${PORT}`);
|
||
|
});
|
||
|
}
|