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

13 lines
207 B
Nginx Configuration File
Raw Normal View History

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