All of our traffic goes through CloudFront, and static content is fetched by CloudFront from one of several S3 buckets.
With uploads being sent to S3, Discourse embeds the content with a generic bucket URL despite our having s3 cdn url set. Once submitted, posts appear to use the correct URL set in s3 cdn url, although this may also be because we have DISCOURSE_CDN_URL set as well (both are set to the same URL).
The post preview window references the standard S3 URL seen in the unbaked post, though. This is a problem because we use a private ACL on files uploaded to our Discourse uploads bucket, as content on this bucket should never be accessed outside of CloudFront. The result is a broken image in the preview window.
Non sono sicuro che sia corretto affermare che questo sia rotto, quanto piuttosto che l’implementazione più complessa non sia completamente supportata.
I caricamenti S3, come documentato, funzionano e si comportano correttamente.
A mio avviso, è “rotto” il fatto che utilizzi l’URL CDN in un caso e non nell’altro, e che imponga una configurazione S3 che AWS sconsiglia effettivamente (ACL pubblica per un bucket S3).
Sono nuovo del progetto Discourse in generale, ma posso certamente lavorare su una PR.
Come da recente modifica, ora otteniamo l’URL del file caricato direttamente dalla richiesta di caricamento iniziale. In precedenza, lo ricevevamo dall’endpoint /uploads/lookup-urls.json. Questo commit dovrebbe risolvere il problema.