Advertisement
k3NGuru

Untitled

Apr 11th, 2022
1,823
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.42 KB | None | 0 0
  1. location /camunda-service/rip/main/ {
  2.    rewrite ^/camunda-service/rip/main/(.*)$ /ficb_lk_react/ last;
  3.    proxy_pass http://ficb_lk_react;
  4.    proxy_redirect default;
  5.    proxy_set_header X-Real-IP $remote_addr;
  6.    proxy_set_header X-Forwarded-For $http_x_forwarded_for;
  7.    proxy_set_header X-Forwarded-Host $http_host;
  8.    proxy_set_header X-Forwarded-Proto $scheme;
  9.    proxy_set_header X-Forwarded-Port $http_port;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement