Skip to content

Instantly share code, notes, and snippets.

@Demacr
Created July 22, 2020 17:28
Show Gist options
  • Save Demacr/b62dbb61f8469253ebb757960c429ce7 to your computer and use it in GitHub Desktop.
Save Demacr/b62dbb61f8469253ebb757960c429ce7 to your computer and use it in GitHub Desktop.
Rabbitmq nginx %2F workaround
location ~* /rabbitmq/api/ {
if ($request_uri ~* "/rabbitmq/(.*)") {
proxy_pass http://localhost:15672/$1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment