"Refactor calendar template and database schema"
This commit is contained in:
@@ -4343,19 +4343,19 @@ if __name__ == "__main__":
|
|||||||
ssl_context = get_ssl_context()
|
ssl_context = get_ssl_context()
|
||||||
|
|
||||||
if ssl_context:
|
if ssl_context:
|
||||||
app_logger.info("Starte HTTPS-Server auf 0.0.0.0:443")
|
app_logger.info("Starte HTTPS-Server auf 0.0.0.0:8443")
|
||||||
app.run(
|
app.run(
|
||||||
host="0.0.0.0",
|
host="0.0.0.0",
|
||||||
port=443,
|
port=8443,
|
||||||
debug=False,
|
debug=False,
|
||||||
ssl_context=ssl_context,
|
ssl_context=ssl_context,
|
||||||
threaded=True
|
threaded=True
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
app_logger.info("Starte HTTP-Server auf 0.0.0.0:80")
|
app_logger.info("Starte HTTP-Server auf 0.0.0.0:8080")
|
||||||
app.run(
|
app.run(
|
||||||
host="0.0.0.0",
|
host="0.0.0.0",
|
||||||
port=80,
|
port=8080,
|
||||||
debug=False,
|
debug=False,
|
||||||
threaded=True
|
threaded=True
|
||||||
)
|
)
|
||||||
@@ -4371,3 +4371,9 @@ if __name__ == "__main__":
|
|||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
try:
|
||||||
|
stop_queue_manager()
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
sys.exit(1)
|
||||||
|
Binary file not shown.
@@ -769,5 +769,4 @@ document.addEventListener('DOMContentLoaded', function() {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
|
||||||
{% endblock %}
|
{% endblock %}
|
Reference in New Issue
Block a user