mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Fix for 404s on frontend.
This commit is contained in:
parent
03c5086a72
commit
6688fafeaa
2 changed files with 13 additions and 0 deletions
12
docker/nginx.conf
Normal file
12
docker/nginx.conf
Normal file
|
@ -0,0 +1,12 @@
|
|||
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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue