Shin
Shin
> Could you provide more information? For example, the following information would be helpful: > > * your setup details (how you launch docker image? whether external DB is used?...
@takezoe It also happens with older version of docker image (gitbucket/gitbucket:4). I have not tested with any binary version. But I think there may be different logic for serving raw...
After digging your source code, i found these parts: â– This part (for webapp) is good, response is fast: https://github.com/gitbucket/gitbucket/blob/ab822a3c27c340ec4a6a94a3eb08a664a222aad0/src/main/scala/gitbucket/core/controller/RepositoryViewerController.scala#L664 â–¼ https://github.com/gitbucket/gitbucket/blob/ab822a3c27c340ec4a6a94a3eb08a664a222aad0/src/main/scala/gitbucket/core/util/JGitUtil.scala#L1001 â– This part (for API) is much slower:...
@takezoe I hope this problem will be fixed soon. I'm implementing an ultra assets server system that allows accessing any version of files from gitbucket.
btw, `GitAuthenticationFilter` errors still exist. https://github.com/gitbucket/gitbucket/blob/ab822a3c27c340ec4a6a94a3eb08a664a222aad0/src/main/scala/ScalatraBootstrap.scala#L29
@pineapplemachine I would appreciate it if you could consider reviewing this pull request.
I believe that regardless of whether you use `webuser`, `www-data` or any custom user:group or UID:GID values, problems may arise if a user run your docker image along with other...
@jaydrogers Think of `www-data` like a cafeteria worker at school. Their job is just to serve food in the cafeteria - they don't need access to other parts of the...
@jaydrogers One of approaches for running `php artisan` commands as `www-data` is setting the setuid bit on the `artisan` file so it always runs as `www-data`. `chmod u+s /path/to/artisan`. (I...
2024