# Start nginx in this directory with `nginx -p . -c nginx.conf`
# Stop nginx with `nginx -p . -s stop`
events {}

http {
    # edit this for your system
    include /etc/nginx/mime.types;

    server {
        listen 9001;
        access_log http.access.log;
        error_log http.error.log;
        
        root site/;

        error_page 404 /404.html;
        location / {
            autoindex off;
            default_type "text/html";
            try_files  $uri $uri.html /$uri/index.html /index.html;
        }
    }
}