Answer the question
In order to leave comments, you need to log in
How to set up a local server and dd-wrt router to make external post requests?
I already asked this question yesterday. But the problem was that I had a "gray ip".
Enabled static ip service.
But still I can't make a request to my server from outside.
Server on node js.
const express = require('express');
const app = express();
const port = 3000;
app.listen(port, ()=>{
console.log('we are live on port '+port)
});
app.post('/',(req, res)=>{
res.send('hello');
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question