Hello,
I have an issue opening a txt verification in the root folder that I need for one external service. I need to be able to open the file via url like: domain.com/txt_verification.txt . My server is running via ngnix on port 3000 with this app.js code:
var frontity = require("./build/server").default;
var http = require("http");
var server = http.createServer(frontity);
server.listen(3000);
I tried adding the file in the build and static folder but no luck, still getting the 404. Anyone has solution for this?
Thanks!