10 lines
262 B
Plaintext
10 lines
262 B
Plaintext
# Liste dynamique des fragments de routes
|
|
# Sert le contenu du répertoire $NGINX_CONF_DIR/ avec autoindex
|
|
location /routes/ {
|
|
autoindex on;
|
|
autoindex_exact_size off;
|
|
autoindex_localtime on;
|
|
default_type text/plain;
|
|
alias $NGINX_CONF_DIR/;
|
|
}
|