mirror of
https://github.com/vxcontrol/pentagi.git
synced 2026-07-21 08:15:23 -04:00
[GH-ISSUE #41] [Bug]: Client sent an HTTP request to an HTTPS server Error pentagi #20
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @andrey-yalta on GitHub (May 28, 2025).
Original GitHub issue: https://github.com/vxcontrol/pentagi/issues/41
Originally assigned to: @asdek on GitHub.
Affected Component
Core Services (Frontend UI/Backend API)
Describe the bug
Hello, guys!
I successfully installed pentagi according to the instructions (Quick Start), launched the docker, but when going to the address http://127.0.0.1:8443/ I see the following entry: "Client sent an HTTP request to an HTTPS server." and the application is missing. Tell me what could have gone wrong?
Steps to Reproduce
System Configuration
Kali linux 2025.1
Logs and Artifacts
No response
Screenshots or Recordings
No response
Verification
@asdek commented on GitHub (May 28, 2025):
Hello @andrey-yalta
That's the correct error message - you're trying to use plain HTTP to access an HTTPS server. Simply use https://127.0.0.1:8443 instead.
This happens because if your
.envfile is based on.env.example, you have the SERVER_USE_SSL feature activated, which generates self-signed SSL certificates during startup.Your browser might show a security warning about the self-signed certificate, which is normal in this development environment.
@andrey-yalta commented on GitHub (May 29, 2025):
omg, how could i not solve the problem myself) thanks!