1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-13 22:00:28 +05:30
Piped/docker/nginx.conf

14 lines
226 B
Nginx Configuration File
Raw Normal View History

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