Unverified Commit 0fb5b756 authored by Tom Moulard's avatar Tom Moulard
Browse files

nginx: adding simple configuration file

parent 1897df10
Loading
Loading
Loading
Loading

nginx/nginx.conf

0 → 100644
+9 −0
Original line number Diff line number Diff line
server {
    root /etc/nginx/conf.d/www;
    index index.html;

    location /{
        try_files $uri $uri/ =404;
        autoindex on;
    }
}

nginx/www/index.html

0 → 100644
+2 −0
Original line number Diff line number Diff line
<h1>Simple web page</h1>
Hello, World!