+ TODO
+
+
+
diff --git a/static/index.html b/static/index.html
index 8d93f41..1f1b62c 100644
--- a/static/index.html
+++ b/static/index.html
@@ -12,8 +12,8 @@
diff --git a/Dockerfile b/Dockerfile index bf48d76..e4029e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,2 +1,3 @@ FROM docker.io/nginx:latest +COPY nginx.conf /etc/nginx/conf.d/default.conf COPY static/ /usr/share/nginx/html/ diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..bc98de6 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,10 @@ +server { + listen 80; + listen [::]:80; + server_name localhost; + + location / { + root /usr/share/nginx/html; + index index.html; + } +} diff --git a/static/about.html b/static/about.html new file mode 100644 index 0000000..7dd57e2 --- /dev/null +++ b/static/about.html @@ -0,0 +1,36 @@ + + +
+ +