diff --git a/docker-compose.yml b/docker-compose.yml index af22bbb..8454d56 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,4 +4,4 @@ services: openscad: build: . ports: - - "5000:5000" + - "127.0.0.1:5000:5000" diff --git a/tools/multi-uploader.html b/tools/multi-uploader.html index 41cdaed..413bfad 100644 --- a/tools/multi-uploader.html +++ b/tools/multi-uploader.html @@ -116,7 +116,7 @@ const send_form = document.getElementById("files-form"); send_form.addEventListener("submit", (event) => { - const url = "http://127.0.0.1:5000/"; + const url = "https://cad.interstellai.re/upload"; fetch(url, { method: "POST", body: new FormData(event.target)