Milos Stojanovic
Milos Stojanovic
Are you getting the `SIGWINCH` if you detach it and run it as a background service? ``` docker run -d --name filegatorservice -p 8080:8080 filegator/filegator:v7.9.2-multiarch docker logs filegatorservice -f ```
Giving all permissions to Guest is the way to disable auth. That's how it is done here: https://demo.filegator.io To change the user you must customize the Dockerfile. However, file permissions...
The CI workflow is missing multiarch config/setup https://github.com/filegator/filegator/blob/master/.github/workflows/ci-dockerhub.yml
Thank you for your feedback. I'll mark this as a feature request.
You can use gorilla directly: ``` package main import ( "fmt" "net/http" "os" "github.com/gorilla/mux" "github.com/gotuna/gotuna" ) func handlerParams(app gotuna.App) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, mux.Vars(r)) })...
Or use a middleware helper https://www.gotuna.org/docs/basics/middlewares/#storeparamstocontext
Hi, thanks for this. However, I think this will increase UI complexity since we already have two options that start with Copy over there. Also, this requires all language files...
Hi, Thanks for this. I have some doubts about the actual flow here. What is user wants to create a copy of a file in the same folder? Will this...
Hi, Thanks for your feedback. Implementing the second feature requires metadata for each file or link to store the necessary information. Managing and saving this data increases the complexity beyond...
This is a small version bump to already deprecated lib. Should we upgrade everything instead? Vue3?