Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CDPT-2264 Improve nginx's file serving. #790

Merged
merged 1 commit into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions deploy/config/local/nginx/server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,14 @@ server {

# Empty location blocks to allow access when "/" location
# sends an HTTP 503 during maintenance mode
location /app/themes/clarity/error-pages/ { }
location /app/themes/clarity/dist/ { }
location /app/themes/clarity/error-pages/ {
# If the file exists, serve it directly, else return 404.
try_files $uri =404;
}
location /app/themes/clarity/dist/ {
# If the file exists, serve it directly, else return 404.
try_files $uri =404;
}

# Rewrite old upload URLs to the bedrock equivalent
location /wp-content/uploads/ {
Expand Down
10 changes: 8 additions & 2 deletions deploy/config/server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,14 @@ server {

# Empty location blocks to allow access when "/" location
# sends an HTTP 503 during maintenance mode
location /app/themes/clarity/error-pages/ { }
location /app/themes/clarity/dist/ { }
location /app/themes/clarity/error-pages/ {
# If the file exists, serve it directly, else return 404.
try_files $uri =404;
}
location /app/themes/clarity/dist/ {
# If the file exists, serve it directly, else return 404.
try_files $uri =404;
}

# Rewrite old upload URLs to the bedrock equivalent
location /wp-content/uploads/ {
Expand Down
Loading