add dockerfile and nginx config

This commit is contained in:
Pim Kunis 2023-05-19 21:12:57 +02:00
parent fd2f40493f
commit c915c734fc
2 changed files with 22 additions and 0 deletions

4
Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM nginx:1.24-bullseye
COPY ./site-html /var/www/blog
COPY ./nginx.conf /etc/nginx/conf.d/default.conf

18
nginx.conf Normal file
View file

@ -0,0 +1,18 @@
server {
listen 80;
server_name pim.kunis.nl;
index index.html index.htm;
root /var/www/blog;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(?:ico|css|js|gif|jpe?g|png)$ {
expires 30d;
add_header Pragma public;
add_header Cache-Control "public";
}
error_page 404 /404.html;
}