All checks were successful
Build & Deploy Frontend / build-push-deploy (push) Successful in 1m45s
10 lines
140 B
Nginx Configuration File
10 lines
140 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri /index.html;
|
|
}
|
|
} |