mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-14 15:43:37 +01:00
Failed to start #43
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 @BlueHtml on GitHub (Mar 1, 2025).
Hello,
I downloaded
godoxy-agent-linux-amd64from actions/workflows/agent-binary.yml, and when I try to start it in WSL, it keeps reporting errors as follows:Is this due to missing certificates?
@yusing commented on GitHub (Mar 1, 2025):
Hi, agent binary is not ready to use yet. Yes it is missing certificates and those are defined in environment variables.
Agent runs a HTTPS server with mTLS so certificates are required.
Please run agent with docker for now (docker compose copied from here, and with
Nightlychecked).It will generate something like this and copied to your clipboard.
@BlueHtml commented on GitHub (Mar 1, 2025):
@yusing Thank you for your reply.
I am simply trying to do a basic test.
Is it possible to configure the Agent to listen on port 80 only? I tried removing
GODOXY_HTTPS_ADDR=:443from the environment variables, but it did not work.@yusing commented on GitHub (Mar 1, 2025):
No, it's unsafe so I do not and will not provide an option for that.
Agent does not need the these environment variables (from
.env.example), so removing these have no effect.Required variables are in the docker compose above, also CA Cert and Client Cert is also required on the main server. Manual setup is not a good idea.
@BlueHtml commented on GitHub (Mar 1, 2025):
Okay, I will try Docker.