All checks were successful
Build and push NGINX image / build (push) Successful in 4m22s
9 lines
159 B
Text
9 lines
159 B
Text
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
}
|
|
}
|