Sergey Karmanov c7df4d248f
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
Добавил CI/CD
2023-12-24 13:31:28 +03:00

9 lines
184 B
Nginx Configuration File

server_tokens off;
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /index.html;
}
}