From b472e763fc1433a7dc010352f28f99af731deef1 Mon Sep 17 00:00:00 2001 From: Joseph Rautenbach Date: Sun, 20 Jan 2019 22:47:05 +0200 Subject: [PATCH] Updated web interface URL to localhost --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index fcca42f..56d8ec7 100644 --- a/app.js +++ b/app.js @@ -8,7 +8,7 @@ var port = 3001; var staticDir = 'static/'; var tempDirRoot = 'temp/'; var outputDir = 'output/'; -var httpOutputURL = 'https://latex2image.joeraut.com/output/'; +var httpOutputURL = 'http://127.0.0.1/output/'; // Command to compile .tex file to .dvi file. Timeout kills LaTeX after 5 seconds if held up var latexCMD = 'timeout 5 latex -interaction nonstopmode -halt-on-error equation.tex';