Re: [Interest] server certificate integration

2024-02-26 Thread Alexander Carôt via Interest
Hi Samuel and Alex, thanks a lot – this already helps ! I just saw that in the basic example the files are being integrated as resources and of course I could theoretically point to the certificate files directly. Best Alex -- http://www.carot.de Email : alexan...@carot.de Tel.: +49 (0)177

Re: [Interest] server certificate integration

2024-02-26 Thread Samuel Gaist via Interest
Hi, Why not pass the path to the certificate as a parameter of your application ? That way, you can configure it in the startup script of your server and just need to restart/reload it when the time comes to update the certificate. Another possibility is to use a configuration file in which you

Re: [Interest] server certificate integration

2024-02-26 Thread a...@golks.de
hi, why not simply read certificate related stuff from file/env and add proper configuration using     https://doc.qt.io/qt-6/qsslconfiguration.html and when expiration is about to happen, reload the whole and configure again? regards, alex On 26.02.2024 16:11, Alexander Carôt via Interest wr

[Interest] server certificate integration

2024-02-26 Thread Alexander Carôt via Interest
Hi all, I have a secure websocket server based on the Qt example: https://doc.qt.io/qt-6/qtwebsockets-sslechoserver-example.html It requires a certificate and a key which are compiled into the server and it functions well. However, whenever the certificate expires (such as Let’s encrypt after

[Interest] FileDialog crash on macOS arm64

2024-02-26 Thread Federico Ferri
Hi all, I'm using Qt 6.6.1 developing a Qt Quick application, and I am encountering an issue where opening a FileDialog crashes my application. Testcase: import QtQuick import QtQuick.Dialogs Window { visible: true FileDialog {id: fileDialog} Component.onCompl