So me and a friend are working on a site for my bot. And we needs pages with id parameters so I tried editing the sites-enabled to add that, but I’m missing permissions. Is there any way to edit it?
hey @Krxnky - we currently don’t enable users to configure nginx but there’s an issue open to get that set up in the future. i’ve passed this on to the team to let them know it’s wanted!
1 Like
You could do this with an express server.
From Express routing this example:
app.get('/users/:userId/books/:bookId', function (req, res) {
res.send(req.params)
})