diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 0000000000000000000000000000000000000000..802f872c4521fc88a4050e0a3056587867b0075b
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,10 @@
+server_tokens off;
+server {
+    listen       8080;
+    server_name  localhost;
+    location / {
+        root   /usr/share/nginx/html;
+        index  index.html index.htm;
+        try_files $uri /index.html;
+    }
+}
\ No newline at end of file