FTP

Nginx

Пример настройки сайта:

server {
	listen 80 default_server;

	root /data/ftp;
	charset UTF-8;
	server_tokens off;

	location / {
		autoindex on;
		autoindex_exact_size off;
		autoindex_localtime on;
		try_files $uri $uri/ =404;
	}
}