chore(nginx): The routes /, /robots.txt, /favicon.ico were moved to nginx for the web microservice. Added html page to the home route

This commit is contained in:
Данил 2025-02-13 12:43:09 +03:00
parent 907b614f25
commit 6bae4dabfc
14 changed files with 1480 additions and 28 deletions

View file

@ -20,11 +20,9 @@ const fastify = require("fastify")({
});
const getRateRoute = require("./routes/getRate.js");
const HomeRoute = require("./routes/home.js");
const getMetadata = require("./routes/metadata.js");
fastify.register(getRateRoute);
fastify.register(HomeRoute);
fastify.register(getMetadata);
fastify.setNotFoundHandler(function (res, reply) {