netblue30 / fdns

Firejail DNS-over-HTTPS Proxy Server
GNU General Public License v3.0
115 stars 29 forks source link

typo #1

Closed Fred-Barclay closed 4 years ago

Fred-Barclay commented 4 years ago

Hey @netblue30 ... just a typo fix (I believe).

I was thinking of writing a systemd service file for this so it could be automatically started at boot w/o messing with /etc/rc.local... would that be useful? I've got a draft one written already but still need to test it out.

netblue30 commented 4 years ago

Sure, go for it. Also, if you are still on Arch, what source code packages did you have to install to get it compiled? I did develop this thing on Arch, but I don't remember what I had to install.

Fred-Barclay commented 4 years ago

Still on Arch. :smile: I didn't have to install anything extra, but I have so much dev stuff already on this system... I'll set up a fresh VM and see what we need.

Fred-Barclay commented 4 years ago

@netblue30 turns out the openssl library and libseccomp are included by default (with the 'base' package). Do you want to list build dependencies too? If so gcc and make are the only things needed on Arch (they're installed by default also if the base-devel group is installed during initial setup, but this isn't always the case).

netblue30 commented 4 years ago

Not gcc, just compile dependencies on openssl if any, so I can add it here on README (.md)

Debian/Ubuntu: sudo apt-get install libseccomp-dev libssl-dev Fedora/CentOS: sudo yum install libseccomp-devel openssl-devel

Fred-Barclay commented 4 years ago

@netblue30 no you're good then, openssl is pulled in by iputils which is part of the base group.

netblue30 commented 4 years ago

cool, thanks!