feat: resume and aboutme pages

This commit is contained in:
ange 2024-09-10 23:12:26 +07:00
parent ea5de0a2c4
commit 16c6f27a93
Signed by: ange
GPG key ID: 9E0C4157BB7BEB1D
5 changed files with 85 additions and 2 deletions

10
nginx.conf Normal file
View file

@ -0,0 +1,10 @@
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
}
}