build frontend

This commit is contained in:
jxxghp
2023-06-30 14:08:46 +08:00
parent ed38fa487f
commit 333e347aef
3 changed files with 42 additions and 3 deletions

18
nginx.conf Normal file
View File

@ -0,0 +1,18 @@
events {}
http {
server {
listen 3000;
server_name moviepilot;
location / {
root /app/public;
index index.html;
try_files $uri $uri/ /index.html;
}
location /docs {
proxy_pass http://localhost:3001;
}
}
}