piped / docker /nginx.conf
soiz1's picture
Rename app/nginx.conf to docker/nginx.conf
05ae7af verified
raw
history blame contribute delete
225 Bytes
server {
listen 80;
listen [::]:80;
server_name localhost;
error_log off;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 404 =200 /index.html;
}