New pages
Jump to navigation
Jump to search
25 April 2026
- 20:1520:15, 25 April 2026 Activating openaigateway (hist | edit) [1,280 bytes] Admin (talk | contribs) (Created page with "To run OpenAIGateway you need python 3.12 installed. It can be installed only from CentOS 9 dnf install python3.12 python3.12-pip python3.12-devel pip3.12 install poetry pip3.12 install uvicorn pip3.12 install "uvicorn[standard]" pip3.12 install fastapi pip3.12 install aiohttp The OpenAIGateway will be located in /usr/local/openaigateway and will run over port 9088 poetry run uvicorn src.main:app --host 0.0.0.0 --port 9088 On asterisk, you need to confi...")
3 August 2025
- 14:4014:40, 3 August 2025 Token authentication (hist | edit) [891 bytes] Admin (talk | contribs) (Created page with "If you like to integrate MiRTA PBX in your portal and you like to have a single authentication, you can create a token with the username and password for the user and pass to the login.php script. <code><?php $key='*******'; $credentials['username']='*****'; $credentials['password']='*****'; $keyHash = hash('sha256', $key, true); $iv = substr($keyHash, 0, 16); define('AES_256_CBC', 'aes-256-cbc'); $token=base64_encode(openssl_encrypt(json_encode($credentials), AES_2...")