/// <summary>
        /// Ignore all routing from files, use HtmlRootFolder
        /// </summary>
        /// <param name="app"></param>
        private void ConfigureMiddleware(IAppBuilder app)
        {
            // create the html root folder if it doesn't exist
            var  folderLocation = ContentUpdater.GetFolderLocation("");
            bool exists         = Directory.Exists(folderLocation);

            if (!exists)
            {
                Directory.CreateDirectory(folderLocation);
            }


            var physicalFileSystem = new PhysicalFileSystem(@"./" + StandingData.HtmlRootFolder);

            var options = new FileServerOptions
            {
                EnableDefaultFiles = true,
                FileSystem         = physicalFileSystem
            };

            options.StaticFileOptions.FileSystem            = physicalFileSystem;
            options.StaticFileOptions.ServeUnknownFileTypes = true;
            options.DefaultFilesOptions.DefaultFileNames    = new[]
            {
                "index.html"
            };

            app.UseFileServer(options);
        }