mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-14 06:13:33 +01:00
Fetch error 500 - Internal Server Error #59
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 @mrg358 on GitHub (Apr 21, 2025).
Creating a new Include File in Web UI throws an error.
Creating a new Middleware compose works with no issue.
Fetch error 500 - Internal Server Error
Internal Server Error
Noticed there is a mixed folder structure ownership right after installation. Not sure if related. Tried to change config folder permission didn't help.
@yusing commented on GitHub (Apr 21, 2025):
From what I see, the error is about
config/appp.ymlbeing not exist. I guess there's a typo for "appp".@yusing commented on GitHub (Apr 21, 2025):
About the permission issue, you may want to do this:
add
DOCKER_HOST=tcp://127.0.0.1:2375to.envset container user to 1000:1000 (adjust if your uid is different)
chown -R 1000:1000 .ready to restart with
docker compose up -d@yusing commented on GitHub (Apr 21, 2025):
Since GoDoxy has to read/write to docker socket, root privileges is required. But when you save a file from the WebUI the file will be owned by root as well. Doing above bypasses the requirement.
@mrg358 commented on GitHub (Apr 21, 2025):
Thank you for suggestions.
I tried and failed. Not sure if it is a permission issue.
Godoxy seems to run OK.
When I try to create new files from Web UI it throws the same error
Fetch error 500 - Internal Server Error
Internal Server Error
Any suggestion welcome.
@yusing commented on GitHub (Apr 21, 2025):
Did u click save file after creating them? Could you
ls configand double check if they exist?@yusing commented on GitHub (Apr 21, 2025):
And now I see this:
Which means you've created app.yml successfully, but not two other files
@mrg358 commented on GitHub (Apr 21, 2025):
The app.yml was created via terminal.
After a little bit of "try and error" it worked out somehow but not a smooth experience.
{"subjects":["alias"],"err":{}}@yusing commented on GitHub (Apr 21, 2025):
Ok I'll check again and see if I can reproduce the issue
@yusing commented on GitHub (Apr 22, 2025):
@mrg358 Fixed, please
docker compose pull && docker compose up -d@mrg358 commented on GitHub (Apr 22, 2025):
Quickly tested, now it works much better.
Thank you and closing the issue.