This repository has been archived on 2021-04-04. You can view files and clone it, but cannot push or open issues/pull-requests.
nginx-index/default.conf

18 lines
251 B
Plaintext

server {
listen 80;
server_name localhost;
access_log off;
location / {
root /srv/www/;
autoindex on;
autoindex_exact_size on;
add_before_body /__assets/header.html;
}
location /__assets/ {
alias /usr/share/nginx/html/assets/;
}
}