# vi: ft=nginx server { listen 443 ssl; #server_name localhost; ssl_certificate cert.pem; ssl_certificate_key cert.key; ssl_session_cache shared:SSL:1m; ssl_session_timeout 5m; ssl_ciphers HIGH:!aNULL:!MD5; ssl_prefer_server_ciphers on; location / { root /srv/arch/; autoindex on; autoindex_exact_size off; autoindex_format html; autoindex_localtime on; } }