MoviePilot/nginx.conf
2023-06-30 14:08:46 +08:00

19 lines
260 B
Nginx Configuration File

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;
}
}
}