Skip to content

Commit

Permalink
feat: allow m4 subpages in voices (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
damian-molinski authored Sep 7, 2024
1 parent 5642d94 commit 5adaade
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions catalyst_voices/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ http {
index index.html;
try_files $uri $uri/ /index.html;
}
# Ensure that /m4 (and any other SPA path) serves index.html
location /m4 {
root /app;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
Expand Down

0 comments on commit 5adaade

Please sign in to comment.