user nginx; worker_processes auto; error_log /var/log/nginx/error.log notice; pid /run/nginx.pid; events { worker_connections 1024; } http { server { # Юникод, чтобы неанглийские символы отображались корректно в браузере charset UTF-8; location / { # Файлы класть сюда в файловую систему alias /tmp/files/; autoindex on; autoindex_exact_size off; autoindex_localtime on; # Аутентификация auth_basic "Enter your credentials"; auth_basic_user_file /etc/nginx/nginx_htpasswd; } } }