worker_processes 1; pid nginx.pid; error_log error.log; events { worker_connections 128; } http { access_log access.log; client_body_temp_path body-temp; proxy_temp_path proxy-temp; server { listen 127.0.0.1:29180; server_name existing.test; location / { include route.conf; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; } } }