Добавил автодеплой
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 10s
Create and publish a Docker image / Deploy image (push) Successful in 4s

This commit is contained in:
2023-08-24 17:14:09 +03:00
parent 390d42119f
commit e37f71bf2f
4 changed files with 108 additions and 0 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;
}
}