Live data from Hacker News

Wg-access-server: WireGuard VPN server and web UI for device management

github.com

21–30 of 35 posts

Re: Wg-access-server: WireGuard VPN server and web UI for device management

#29

Also check out wg-easy: https://github.com/weejewel/wg-easy . Much more beautiful imo.

> Gravatar support. What ? Yeah, no. edit: or at least it should be opt-in for client

There's not much to it:

    if (client.name.includes('@') && client.name.includes('.')) {
          client.avatar = `https://www.gravatar.com/avatar/${md5(client.name)}?d=blank`;

Re: Wg-access-server: WireGuard VPN server and web UI for device management

#30
post #29

Earlier quoted context omitted.

> Gravatar support. What ? Yeah, no. edit: or at least it should be opt-in for client

There's not much to it: if (client.name.includes('@') && client.name.includes('.')) { client.avatar = `https://www.gravatar.com/avatar/${md5(client.name)}?d=blank`;

I think people might not like this since it causes your clients to "phone home" to Gravatar unnecessarily/expectedly. It's a little out of place for what is essentially a network security application.
Post reply on HN