mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 20:26:55 +02:00
Rename domain server cert files
This commit is contained in:
parent
ccd525a89b
commit
c76dc5358b
2 changed files with 4 additions and 4 deletions
|
@ -88,7 +88,7 @@
|
||||||
{
|
{
|
||||||
"name": "enable_webrtc_websocket_ssl",
|
"name": "enable_webrtc_websocket_ssl",
|
||||||
"label": "Enable WebRTC WebSocket SSL",
|
"label": "Enable WebRTC WebSocket SSL",
|
||||||
"help": "Use secure WebSocket (wss:// protocol) for WebRTC signaling channel. If \"on\", the key, cert, and CA files are expected to be in the local Vircadia app directory, in a /domain-server/ subdirectory with filenames cert.key, cert.crt, and crt-ca.crt.",
|
"help": "Use secure WebSocket (wss:// protocol) for WebRTC signaling channel. If \"on\", the key, cert, and CA files are expected to be in the local Vircadia app directory, in a /domain-server/ subdirectory with filenames vircadia-cert.key, vircadia-cert.crt, and vircadia-crt-ca.crt.",
|
||||||
"type": "checkbox",
|
"type": "checkbox",
|
||||||
"default": false,
|
"default": false,
|
||||||
"advanced": true
|
"advanced": true
|
||||||
|
|
|
@ -31,9 +31,9 @@ WebRTCSignalingServer::WebRTCSignalingServer(QObject* parent, bool isWSSEnabled)
|
||||||
this));
|
this));
|
||||||
|
|
||||||
auto dsDirPath = PathUtils::getAppLocalDataPath();
|
auto dsDirPath = PathUtils::getAppLocalDataPath();
|
||||||
const QString KEY_FILENAME = "cert.key";
|
const QString KEY_FILENAME = "vircadia-cert.key";
|
||||||
const QString CRT_FILENAME = "cert.crt";
|
const QString CRT_FILENAME = "vircadia-cert.crt";
|
||||||
const QString CA_CRT_FILENAME = "cert-ca.crt";
|
const QString CA_CRT_FILENAME = "vircadia-cert-ca.crt";
|
||||||
qCDebug(networking_webrtc) << "WebSocket WSS key file:" << dsDirPath + KEY_FILENAME;
|
qCDebug(networking_webrtc) << "WebSocket WSS key file:" << dsDirPath + KEY_FILENAME;
|
||||||
qCDebug(networking_webrtc) << "WebSocket WSS cert file:" << dsDirPath + CRT_FILENAME;
|
qCDebug(networking_webrtc) << "WebSocket WSS cert file:" << dsDirPath + CRT_FILENAME;
|
||||||
qCDebug(networking_webrtc) << "WebSocket WSS CA cert file:" << dsDirPath + CA_CRT_FILENAME;
|
qCDebug(networking_webrtc) << "WebSocket WSS CA cert file:" << dsDirPath + CA_CRT_FILENAME;
|
||||||
|
|
Loading…
Reference in a new issue