update configs

This commit is contained in:
Pavel 2024-01-18 18:31:21 +03:00
parent e184d9e2be
commit e56dc8aebe
2 changed files with 8 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM nginx:stable-alpine
WORKDIR /var/www/html
COPY /public /var/www/html
COPY ./nginx.conf /etc/nginx/conf.d/default.conf

3
nginx.conf Normal file
View File

@ -0,0 +1,3 @@
server {
root /var/www/html;
}