d3c3nt

[DORMANT] a fairly decent theme for the zola static site engine
git clone git://git.figbert.com/d3c3nt.git
Log | Files | Refs | README | LICENSE

nginx.conf (229B)


      1 events { }
      2 http {
      3   include /etc/nginx/mime.types;
      4   server_tokens off;
      5   server {
      6     listen 80;
      7     listen [::]:80;
      8     root /usr/share/nginx/html;
      9     error_page 404 /404.html;
     10     default_type application/octet-stream;
     11   }
     12 }