@silverpill @peertube Thanks for the heads up! I learned @peertube keeps full URLs including schemes in its db. I think it must have set these to `http://` from before I enabled PEERTUBE_WEBSERVER_HTTPS?
I ran some manual sql queries and I think/hope it's fixed. 😅
```sql
UPDATE "actor"
SET "url" = REPLACE("url", 'http://', 'https://')
WHERE "url" LIKE 'http://%';
```
(and for other columns too)