Advertisement
achmadzainulkarim

NGINX Proxy Pass

Jun 16th, 2021
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. location /api/v3/app/cash {
  2. proxy_pass http://localhost:5002/api/v3/app/cash;
  3. }
  4.  
  5. location /api/v3/app/xendit {
  6. proxy_pass http://localhost:5002/api/v3/app/xendit;
  7. }
  8.  
  9. location /api/v3/app/user {
  10. proxy_pass http://localhost:5002/api/v3/app/user;
  11. }
  12.  
  13. location /api/v3/app/address {
  14. proxy_pass http://localhost:5002/api/v3/app/address;
  15. }
  16.  
  17. location /api/v3/app/bank {
  18. proxy_pass http://localhost:5002/api/v3/app/bank;
  19. }
  20.  
  21. location /api/v3/app/auth {
  22. proxy_pass http://localhost:5003/api/v3/app/auth;
  23. }
  24.  
  25. location /api/v3/app/retail {
  26. proxy_pass http://localhost:5004/api/v3/app/retail;
  27. }
  28.  
  29. location /api/v3/app/grosir {
  30. proxy_pass http://localhost:5004/api/v3/app/grosir;
  31. }
  32.  
  33. location /api/v3/app/order {
  34. proxy_pass http://localhost:5004/api/v3/app/order;
  35. }
  36. location /api/v3/app/ppob {
  37. proxy_pass http://localhost:5004/api/v3/app/ppob;
  38. }
  39. location /api/v3/app/category {
  40. proxy_pass http://localhost:5005/api/v3/app/category;
  41. }
  42.  
  43. location /api/v3/app/delivery {
  44. proxy_pass http://localhost:5005/api/v3/app/delivery;
  45. }
  46.  
  47. location /api/v3/app/product {
  48. proxy_pass http://localhost:5005/api/v3/app/product;
  49. }
  50. location /api/v3/app/store {
  51. proxy_pass http://localhost:5006/api/v3/app/store;
  52. }
  53. location /api/v3/app/voucher {
  54. proxy_pass http://localhost:5005/api/v3/app/voucher;
  55. }
  56. location /api/v3/center {
  57. proxy_pass http://localhost:5007/api/v3/center;
  58. }
  59. location /xendit {
  60. proxy_pass http://localhost:7000/xendit;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement