From 16c6f27a93f18f2f1d7006d66e96a077227a531d Mon Sep 17 00:00:00 2001 From: ange Date: Tue, 10 Sep 2024 23:12:26 +0700 Subject: [PATCH] feat: resume and aboutme pages --- Dockerfile | 1 + nginx.conf | 10 ++++++++++ static/about.html | 36 ++++++++++++++++++++++++++++++++++++ static/index.html | 4 ++-- static/resume.html | 36 ++++++++++++++++++++++++++++++++++++ 5 files changed, 85 insertions(+), 2 deletions(-) create mode 100644 nginx.conf create mode 100644 static/about.html create mode 100644 static/resume.html 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 @@ + + + + + Ange DUHAYON + + + + + + +
+ +
+ 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 @@