Advertisement
VladimirZinchenko

Untitled

Oct 4th, 2019
704
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.19 KB | None | 0 0
  1. server {
  2.     listen 80;
  3.     listen [::]:80;
  4.  
  5.     location /api/v1 {
  6.         proxy_pass http://api-server:3000;
  7.         proxy_http_version 1.1;
  8.         proxy_set_header Host $host;
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement