fix nginx.conf

This commit is contained in:
jxxghp 2023-07-11 12:57:14 +08:00
parent a4f063d15b
commit 652d13ee84

View File

@ -25,14 +25,12 @@ http {
listen 3000; listen 3000;
server_name moviepilot; server_name moviepilot;
root /app/public
location / { location / {
# 主目录 # 主目录
expires off; expires off;
add_header Cache-Control "no-cache, no-store, must-revalidate"; add_header Cache-Control "no-cache, no-store, must-revalidate";
root /app/public;
index index.html; index index.html;
root /app/public;
} }
location /assets { location /assets {