github.com/unigraph-dev/dgraph@v1.1.1-0.20200923154953-8b52b426f765/wiki/nginx/docs.conf (about)

     1  server {
     2      listen 80;
     3      server_name docs.dgraph.io;
     4      root /home/ubuntu/dgraph/wiki/public;
     5      add_header Cache-Control "no-cache";
     6  
     7      location / {
     8        try_files $uri $uri/index.html /404.html;
     9      }
    10  }