PROJET AUTOBLOG


Links

source: Links

⇐ retour index

Nginx configuration: autoindex subdirectory - Stack Overflow

mardi 5 juin 2018 à 11:11
server {
[...]
    location / {                                                          
        autoindex                   on;
        autoindex_exact_size        off;
        autoindex_localtime         on;
    }
[...]
}
Permalink