Skip to content

Instantly share code, notes, and snippets.

@Rajinsharwar
Created March 23, 2025 18:27
Show Gist options
  • Save Rajinsharwar/e43ce0381294c44c08029cc72d3406f2 to your computer and use it in GitHub Desktop.
Save Rajinsharwar/e43ce0381294c44c08029cc72d3406f2 to your computer and use it in GitHub Desktop.
NGINX conf to enable Buddyboss Media Restrictions
location ~* /wp-content/uploads/bb_medias/ {
if ( $upstream_http_x_accel_redirect = "" ) {
return 403;
}
internal;
}
location ~* /wp-content/uploads/bb_videos/ {
if ( $upstream_http_x_accel_redirect = "" ) {
return 403;
}
internal;
}
location ~* /wp-content/uploads/bb_documents/ {
if ( $upstream_http_x_accel_redirect = "" ) {
return 403;
}
internal;
}
location ~* /wp-content/uploads/bb_medias/ {
autoindex off;
}
location ~* /wp-content/uploads/bb_videos/ {
autoindex off;
}
location ~* /wp-content/uploads/bb_documents/ {
autoindex off;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment