Skip to content

Instantly share code, notes, and snippets.

@wujku
Created June 4, 2020 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wujku/bcde7aab1568576a9b30b80b9fa3fd69 to your computer and use it in GitHub Desktop.
Save wujku/bcde7aab1568576a9b30b80b9fa3fd69 to your computer and use it in GitHub Desktop.
location /api {
rewrite ^/api/(.*) /rest/V1/custom_resource/$1 break;
proxy_pass $scheme://127.0.0.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
@wujku
Copy link
Author

wujku commented Jun 4, 2020

Proxy without redirection

http://magento.test/api/create_invoice/order_id => http://magento.test/rest/V1/custom_resource/create_invoice/order_id

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment