Every service meant to be public work now on port 80 #205

Merged
bema merged 12 commits from bema/fix/unify_ports_on_master into master 2023-05-23 08:59:11 +02:00
Showing only changes of commit b301008c3f - Show all commits

View File

@@ -78,7 +78,9 @@ function showHeadersHistory(element){
}
async function formatJSON(json) {
const address = window.location.protocol + "//" + window.location.hostname + ":" + 8081 + "/json/formatting";
const backend = "java";
const address = window.location.protocol + "//" + window.location.hostname + "/" + backend + "/json/formatting";
console.log("formatJSON");
var init = {
body: json,
@@ -98,7 +100,9 @@ async function formatJSON(json) {
}
async function formatXML(xml) {
const address = window.location.protocol + "//" + window.location.hostname + ":" + 8082 + "/prettify";
const backend = "libxml";
const address = window.location.protocol + "//" + window.location.hostname + "/" + backend + "/prettify";
console.log("formatXML");
var data = {
data: xml,
process: "",