diff --git a/deploy/nginx.conf b/deploy/nginx.conf index 252c7cd..568ee2d 100644 --- a/deploy/nginx.conf +++ b/deploy/nginx.conf @@ -75,6 +75,10 @@ server { gzip_types text/plain text/css text/xml text/javascript application/javascript application/json application/xml application/rss+xml; # Frontend SPA routing — must be last so specific locations above take precedence + location = / { + return 301 /velxio/editor; + } + location / { try_files $uri $uri/ /index.html; }