diff --git a/app/routes.py b/app/routes.py
index c02170852df420f0ad563ddd9cb2f26bf48229c1..26dd32d5b765ba8895adaaa05335183b331a40f7 100644
--- a/app/routes.py
+++ b/app/routes.py
@@ -3,6 +3,7 @@ from flask import render_template, send_from_directory
 from app import app
 
 PLOTS_PATH = "../plots"
+app.config['FREEZER_DESTINATION'] = '../km3web'
 
 PLOTS = [
     ['dom_activity', 'dom_rates'],
@@ -24,6 +25,7 @@ def add_header(r):
 
 
 @app.route('/')
+@app.route('/index.html')
 def index():
     return render_template('plots.html', plots=PLOTS)