Start -UDDashboard not publishing UDFolder

The following code produces no errors, produces a functional dashboard, but also produces a 404 when I try to visit https://MyComputerFQDN:10001/reports

$Content = {...}
$cert = Get-ChildItem -Path Cert:\LocalMachine\My\* | Where-Object {($_.Extensions.EnhancedKeyUsages.FriendlyName -eq "Server Authentication") -and ($_.NotAfter -gt (Get-Date))} | Select-Object -First 1
$OutputDir = "$OutputDir = "$env:ProgramData\LockoutReport""
$PublishedFolders = Publish-UDFolder -Path $OutputDir -RequestPath '/reports'
Start-UDDashboard -Content $Content -Port 10000 -PublishedFolder $Published -HttpsPort 10001 -Certificate $cert

Am I using the -PublishedFolder switch incorrectly? Is it an HTTPS issue? Do I just need to spin up two dashboards one for my content and one for the published folder? Any advice would be great, thanks!

Ok, I think I was just misunderstanding what the concept of publishing a folder would represent. The documentation makes it sound like it would be a directory listing of that folder, but that doesn’t seem to be the case, which I prefer, I was just expecting it in this case.