Добавил CI/CD
Some checks failed
Create and publish a Docker image / Publish image (push) Failing after 13s
Create and publish a Docker image / Deploy image (push) Has been skipped

This commit is contained in:
2023-12-24 13:27:50 +03:00
parent 53af4d2b1b
commit c7df4d248f
4 changed files with 107 additions and 5 deletions

9
nginx.conf Normal file
View File

@@ -0,0 +1,9 @@
server_tokens off;
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /index.html;
}
}