I running my frappe site in aws server.
In the proxyOptions.js file target is localhost? Can i change there into my host name ?
const common_site_config = require(“…/…/…/sites/common_site_config.json”);
const { webserver_port } = common_site_config;
export default {
“^/(app|api|assets|files|private)”: {
target: http://localhost:${webserver_port}
,
ws: true,
router: function (req) {
const site_name = req.headers.host.split(“:”)[0];
return http://${site_name}:${webserver_port}
;
},
},
};