Shizun Ge
Shizun Ge
We can use environment variables. But docker secrets is a better way to manage sensitive data than environment variables. (I am using docker) https://docs.docker.com/engine/swarm/secrets/ https://stackoverflow.com/questions/44615837/why-is-docker-secrets-more-secure-than-environment-variables
Try https://github.com/qoomon/docker-host Docker image to forward TCP and UDP traffic to the docker host.
How about let miniflux decide the polling frequency automatically? https://github.com/miniflux/miniflux/issues/643 I have sent a poll request. You may review the code.
I see your need. If you selfhost miniflux, and you are the only user, probably you can folk the project and make the change you want. Today the fetch is...
Read the codes again. I seems wrong in my previous comments. Each user owns their own feeds. If more than one user subscribe to the same feed, the entries of...
If we have a global option to update feed no matter what is the number of errors, (#956, #879) Does it solve the problem?
Hi All, What do you think of the UI in #998. I hide the option of All/Error feeds to keep the UI simple, avoid adding new elements. Thanks, Shizun
> > 一定是您使用访问仪表板的问题本地计算机无法清除连接您访问的服务器。如果确保您可以将其或至少可以ping通。它可能,请服务器计算机上的端口和防火墙。 > > 我使用谷歌翻译,如果阅读困难,请见谅。 > > 可以访问的,已经关闭了所有防火墙了 Check whether you can access: > https://api.NETMAKER_BASE_DOMAIN/api/networks Where `https://api.NETMAKER_BASE_DOMAIN` is the `BACKEND_URL` environment variable you set. If you go directly to...
You can do it with traefik (and other reverse proxy I believe) You do not need to use Caddy. Here is an example https://github.com/bsherman/netmaker-traefik
Ah, the example is still use `network_mode: host`. In my setup, I use docker network, and I set `CLIENT_MODE=off`. `network_mode: host` is only required if you are using `CLIENT_MODE=on`. I...