Test and Debug Unity WebGL applications using Https

Опубликовано: 07 Июль 2025
на канале: Dimitrios Christopoulos
80
3

Test and Debug Unity WebGL applications using a local Https server.
Works for Win Desktops acting as a server and for any Mobile Device (Android, IOS).

Shoutout to Makaka games that inspired me to do this post. Visit here to learn important tips and tricks about Unity WeGL testing.
https://makaka.org/unity-tutorials/we...

OpenSSL software for creating ssl certificates (Win only). Very small installers.
https://slproweb.com/products/Win32Op...

Create a Private Key with Any Password:
openssl genrsa -aes256 -out localhost.key 2048

Create the Certificate using Your Password
openssl req -days 3650 -new -newkey rsa:2048 -key localhost.key -x509 -out localhost.pem

The settings.json file
{
"liveServer.settings.port": 7777,
"liveServer.settings.https": {
"enable": true,
"cert": "C:/Users/demo/Documents/deth/build_webgl/localhost.pem",
"key": "C:/Users/demo/Documents/deth/build_webgl/localhost.key",
"passphrase": "1234"
}
}


На этой странице сайта вы можете посмотреть видео онлайн Test and Debug Unity WebGL applications using Https длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Dimitrios Christopoulos 07 Июль 2025, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 80 раз и оно понравилось 3 зрителям. Приятного просмотра!