Skip to content

Instantly share code, notes, and snippets.

@tonyarkles
Created September 3, 2016 21:39
Show Gist options
  • Save tonyarkles/36e6cbcf8899cd06fc33d5e4ca06cad6 to your computer and use it in GitHub Desktop.
Save tonyarkles/36e6cbcf8899cd06fc33d5e4ca06cad6 to your computer and use it in GitHub Desktop.
location / {
try_files $uri $uri/ =404;
error_page 404 = @boom;
}
location /blammo {
add_header Content-Type text/plain;
return 200 "Hi there";
}
location @boom {
#set_escape_uri $orig_uri $scheme://$http_host$request_uri$is_arg$args;
set $orig_uri $scheme://$http_host$request_uri; #$is_args$args;
return 302 $scheme://$http_host/blammo?return_to=$orig_uri;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment