FichaFrontend/nginx.conf
Sergey Karmanov e37f71bf2f
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
Добавил автодеплой
2023-08-24 17:14:09 +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;
}
}