Victor LEFEBVRE
Victor LEFEBVRE
I believe we can, but its not in a single spot, I have 4 (or 5 see below). [create_user.rs#L166](https://github.com/lldap/lldap/blob/main/app/src/components/create_user.rs#L166) [group_table.rs#L125](https://github.com/lldap/lldap/blob/main/app/src/components/group_table.rs#L125) [user_details_form.rs#L201](https://github.com/lldap/lldap/blob/main/app/src/components/user_details_form.rs#L201) [user_table.rs#L134](https://github.com/lldap/lldap/blob/main/app/src/components/user_table.rs#L134) And the _technically_ fifth one could be inserted...
One thing that can also be done (but maybe in another commit/PR) is to make nice names for these date fields, they're the only ones in snake_case
I think we're mostly waiting for https://github.com/QnnOkabayashi/tracing-forest/issues/57 As this pr isn't compatible with tracing forest ATM I believe you can still review it and I can split it to only...
While UTC can simplify your debugging, most users don’t actually live in UTC. When apps ignore the configured timezone, it creates unnecessary friction in real deployments (imagine having your services...
Ok, thanks for the clarification, I better understand what you meant. Wouldn't it be better if lldap used the system's timezone everywhere on boot ? This feels way more natural...
Yeah having two instances with potentially different timezones would be a receipt for disaster 😅. I 100% agree with you that time should be stored in UTC, sorry if my...
Ok, I'll try looking for that then 👍
Looking at the code for a naive workaround or solution I feel like instead of https://github.com/haugene/docker-transmission-openvpn/blob/fd609f2ace1970858d3c32fcbd6c271b3d274d39/openvpn/start.sh#L204 the container could simply do a symlink ? ```diff - cp /run/secrets/openvpn_creds /config/openvpn-credentials.txt +...
Managed to harden my server to abide the default audit of upcoming `3.4.0-dev` using ```yaml - path: /etc/ssh/sshd_config.d/35-hardening.conf mode: 0400 contents: inline: | Port {{ .SSH_PORT }} PermitRootLogin no #...
Hi, > Could you please create a hardening guide in the wiki for this I can draft one, but it should be taken with a grain of salt. I’m not...