Advertisement
Guest User

Untitled

a guest
Sep 12th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.36 KB | None | 0 0
  1.     location ~ /vendor/axibase {
  2.         proxy_pass http://axibase:8088;
  3.         proxy_redirect off;
  4.         #proxy_redirect default;
  5.         #proxy_intercept_errors on;
  6.         #error_page 301 302 307 = @handle_axibase_redirects;
  7.     }
  8.  
  9.     location @handle_axibase_redirects {
  10.         set $orig_loc $upstream_http_location;
  11.         proxy_pass $orig_loc;
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement