Vsftpd - Very Secure FTP Server install on Linux Artix Runit

Written by Wim Stockman - on 30 April 2022.

Installation on Linux Artix

	$ pacman -S vsftpd-runit

to enable it on startup

	$ sudo ln -s /etc/runit/sv/svftpd /run/runit/service/

Configuration

Setting it up simple no SSL just basic working with your linux user account.

This is insecure and only for maybe use on a lan or at home

Edit the configuration file

	$ sudo vim /etc/vsftpd.conf

Add following:

Or Create minimal configfile adding this:

	anonymous_enable=NO
	local_enable=YES
	write_enable=YES
	pasv_enable=YES
	pasv_max_port=50000
	pasv_min_port=40000
	dirlist_enable=YES
	seccomp_sandbox=NO
	dirmessage_enable=YES
	xferlog_enable=YES
	connect_from_port_20=YES
	listen=YES
	pam_service_name=vsftpd

That's it enjoy the melody :-)

Proxy Information
Original URL
gemini://yasendfile.org/TipTricks/vsftpd-install.gmi
Status Code
Success (20)
Meta
text/gemini; lang=en
Capsule Response Time
431.184262 milliseconds
Gemini-to-HTML Time
0.214288 milliseconds

This content has been proxied by September (ba2dc).