Skip to content

Commit

Permalink
Add route for /mock
Browse files Browse the repository at this point in the history
  • Loading branch information
zwolf committed Sep 12, 2024
1 parent 4c7ee9e commit c0a1db3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions nginx-fem-redirects.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ set $fe_project_host "fe-project.zooniverse.org";
set $fe_content_pages_host "fe-content-pages.zooniverse.org";
set $fe_root_host "fe-root.zooniverse.org";

# Mock route to test per-path query param caching
location /mock {
resolver 1.1.1.1;
proxy_pass $fe_root_uri;
proxy_set_header Host $fe_root_host;

include /etc/nginx/proxy-security-headers.conf;
}

# Project app data and static files
location ~* ^/projects/(?:_next|assets)/.+?$ {
resolver 1.1.1.1;
Expand Down
9 changes: 9 additions & 0 deletions nginx-fem-staging-redirects.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ set $fe_project_host "fe-project.preview.zooniverse.org";
set $fe_content_pages_host "fe-content-pages.preview.zooniverse.org";
set $fe_root_host "fe-root.preview.zooniverse.org";

# Mock route to test per-path query param caching
location /mock {
resolver 1.1.1.1;
proxy_pass $fe_root_uri;
proxy_set_header Host $fe_root_host;

include /etc/nginx/proxy-security-headers.conf;
}

# Project app data and static files
location ~* ^/projects/(?:_next|assets)/.+?$ {
resolver 1.1.1.1;
Expand Down

0 comments on commit c0a1db3

Please sign in to comment.