Skip to content

Instantly share code, notes, and snippets.

@178inaba
Created August 31, 2015 04:11
Show Gist options
  • Select an option

  • Save 178inaba/58a358190a37ced08451 to your computer and use it in GitHub Desktop.

Select an option

Save 178inaba/58a358190a37ced08451 to your computer and use it in GitHub Desktop.
nginx use try_files(/ -> /index.html, /baz -> /baz.html)
location / {
root /foo/bar;
index index.html index.htm;
try_files $uri $uri/ $uri.html =404;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment