_location.conf 341 B

123456789
  1. location {{ path }} {
  2. proxy_set_header Host $host;
  3. proxy_set_header X-Forwarded-Scheme $scheme;
  4. proxy_set_header X-Forwarded-Proto $scheme;
  5. proxy_set_header X-Forwarded-For $remote_addr;
  6. proxy_pass {{ forward_scheme }}://{{ forward_host }}:{{ forward_port }}{{ forward_path }};
  7. {{ advanced_config }}
  8. }