Skip to content
Snippets Groups Projects
Forked from amiv / Admintool
129 commits behind, 13 commits ahead of the upstream repository.
nginx.conf 201 B
server {
  listen         80 default_server;
  listen         [::]:80 default_server;
  server_name    _;
  root           /var/www/;
  index          index.html;

  try_files $uri /index.html =404;
}