build frontend
This commit is contained in:
18
nginx.conf
Normal file
18
nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user