# nginx static hosting

Source: docs/source/exhibits/guides/typesafe-router/nginx-static-hosting.conf.txt

```text
location / {
  root   /usr/share/nginx/html;
  index  index.html index.htm;
  add_header "Cache-Control" "max-age=0, no-cache, no-store, must-revalidate";
  expires 0;
  try_files $uri /index.html;
}
```
