You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to use this app on a sub url like https://exemple.com/explorer/
I setup this app with an nginx reverse proxy. The proxy work, and I gan get the index page,
but every link are wrong and goes to https://exemple.com/block instead of https://exemple.com/explorer/block
I tried but I'm unable to (and don't have enough knowledge) to edit the app.js file successfully.
I tried to put a router with var router = express.Router();
and edit all routes to router.use('/block', block); and finally make the app use app.use('/explorer', router); but it's not working.
Hello,
I would like to use this app on a sub url like
https://exemple.com/explorer/
I setup this app with an nginx reverse proxy. The proxy work, and I gan get the index page,
but every link are wrong and goes to
https://exemple.com/block
instead ofhttps://exemple.com/explorer/block
I tried but I'm unable to (and don't have enough knowledge) to edit the app.js file successfully.
I tried to put a router with
var router = express.Router();
and edit all routes to
router.use('/block', block);
and finally make the app useapp.use('/explorer', router);
but it's not working.Could someone help me ?
Thanks
Nginx config
The text was updated successfully, but these errors were encountered: