testfile 150 B

12345678
  1. server {
  2. listen 80;
  3. server_name localhost;
  4. location /back/ {
  5. add_header Content-Type text/json;
  6. proxy_pass http://127.0.0.1:8000/;
  7. }
  8. }