Piped/docker/nginx.conf

14 lines
226 B
Nginx Configuration File
Raw Normal View History

2021-08-20 16:10:37 +00:00
server {
listen 80;
listen [::]:80;
server_name localhost;
2023-03-11 21:10:53 +00:00
error_log off;
2021-08-20 16:10:37 +00:00
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 404 =200 /index.html;
}