CONFIG.YML vouch: logLevel: debug port: 9090 domains: - connflex.xyz cookie: secure: true domain: connflex.xyz jwt: maxAge: 900 secret: mB21YS+/r/bB06wmFWR6Ife+RbqmSwSyMAhrxrtQdG8= oauth: provider: oidc client_id: 5a4qd77b07f4cq5k7cd2upl1lu client_secret: v4tn9dlrlt96g6fq2a5bdvfcqm6u28192tpgsvdu6flsf7m4en auth_url: https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize token_url: https://infosite.auth.us-east-1.amazoncognito.com/oauth2/token user_info_url: https://infosite.auth.us-east-1.amazoncognito.com/oauth2/userinfo scopes: - openid - email - profile callback_url: https://vouch.connflex.xyz/auth NGINX.CONF user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. include /usr/share/nginx/modules/*.conf; events { worker_connections 2048; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 4096; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. include /etc/nginx/conf.d/*.conf; server { listen 80; listen [::]:80; server_name _; root /usr/share/nginx/html; # Load configuration files for the default server block. include /etc/nginx/default.d/*.conf; error_page 404 /404.html; location = /404.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } } CONNECT.CONF server { server_name connect.connflex.xyz; root /var/www/connect; index index.html; location / { auth_request /validate; error_page 401 = @error401; try_files $uri $uri/ =404; } location = /validate { internal; proxy_pass http://localhost:9090/validate; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; auth_request_set $auth_resp_failcount $upstream_http_x_vouch_failcount; auth_request_set $auth_resp_jwt $upstream_http_x_vouch_jwt; auth_request_set $auth_resp_err $upstream_http_x_vouch_err; } location @error401 { return 302 https://vouch.connflex.xyz/login?url=$scheme://$http_host$request_uri&vouch-failcount=$auth_resp_failcount&X-Vouch-Token=$auth_resp_jwt&error=$auth_resp_err; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/connect.connflex.xyz/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/connect.connflex.xyz/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { server_name vouch.connflex.xyz; location / { proxy_pass http://localhost:9090; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } location /auth { proxy_set_header X-Original-URI $request_uri; proxy_set_header Host $http_host; return 301 https://connect.connflex.xyz/; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/vouch.connflex.xyz/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/vouch.connflex.xyz/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot } server { if ($host = connect.connflex.xyz) { return 301 https://$host$request_uri; } listen 80; server_name connect.connflex.xyz; return 404; } server { if ($host = vouch.connflex.xyz) { return 301 https://$host$request_uri; } listen 80; server_name vouch.connflex.xyz; return 404; } VOUCH LOGS {"level":"debug","ts":1718423656.8431308,"msg":"Login url param normalized to 'https://connect.connflex.xyz/'"} {"level":"debug","ts":1718423656.8431344,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423656.8431377,"msg":"session requestedURL set to https://connect.connflex.xyz/"} {"level":"debug","ts":1718423656.8431404,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423656.843332,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=Doxyo8POah23dzyG0t7YQGKxvZkm3Xv"} {"level":"debug","ts":1718423656.8433547,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423656.8434331,"msg":"|302| 338.727µs /login","statusCode":302,"request":72,"latency":0.000338727,"avgLatency":0.000179756,"ipPort":"127.0.0.1:47492","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423657.0050795,"msg":"/validate"} {"level":"warn","ts":1718423657.0051174,"msg":"no jwt found in request"} {"level":"debug","ts":1718423657.0051255,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423657.0051303,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423657.0051498,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423657.0051966,"msg":"|401| 97.118µs /validate","statusCode":401,"request":73,"latency":0.000097118,"avgLatency":0.000178624,"ipPort":"127.0.0.1:47504","method":"GET","host":"connect.connflex.xyz","path":"/validate","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423657.0376525,"msg":"/login"} {"level":"debug","ts":1718423657.037688,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423657.0376918,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423657.0377119,"msg":"session state set to MuEagrOqHQsUsd5P2pe0DTQVIc2GL3U"} {"level":"debug","ts":1718423657.0377345,"msg":"Login url param normalized to 'https://connect.connflex.xyz/'"} {"level":"debug","ts":1718423657.0377402,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423657.0377452,"msg":"session requestedURL set to https://connect.connflex.xyz/"} {"level":"debug","ts":1718423657.037749,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423657.0378473,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=MuEagrOqHQsUsd5P2pe0DTQVIc2GL3U"} {"level":"debug","ts":1718423657.0378551,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423657.0379057,"msg":"|302| 229.182µs /login","statusCode":302,"request":74,"latency":0.000229182,"avgLatency":0.000179307,"ipPort":"127.0.0.1:47516","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423657.2148452,"msg":"/validate"} {"level":"warn","ts":1718423657.2148757,"msg":"no jwt found in request"} {"level":"debug","ts":1718423657.2148814,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423657.2148845,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423657.2148952,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423657.2149897,"msg":"|401| 81.217µs /validate","statusCode":401,"request":75,"latency":0.000081217,"avgLatency":0.000178,"ipPort":"127.0.0.1:47528","method":"GET","host":"connect.connflex.xyz","path":"/validate","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423662.266865,"msg":"/validate"} {"level":"warn","ts":1718423662.2669988,"msg":"no jwt found in request"} {"level":"debug","ts":1718423662.2670085,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.2670128,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423662.267026,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423662.2671227,"msg":"|401| 188.409µs /validate","statusCode":401,"request":76,"latency":0.000188409,"avgLatency":0.000178136,"ipPort":"127.0.0.1:40326","method":"GET","host":"connect.connflex.xyz","path":"/validate","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423662.2992404,"msg":"/login"} {"level":"debug","ts":1718423662.299319,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.2993255,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423662.2993689,"msg":"session state set to 7oFBul4Q1N48Vf5wYXKLUoVnlZozUtCB"} {"level":"debug","ts":1718423662.2993906,"msg":"Login url param normalized to 'https://connect.connflex.xyz/'"} {"level":"debug","ts":1718423662.2993975,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.2994025,"msg":"session requestedURL set to https://connect.connflex.xyz/"} {"level":"debug","ts":1718423662.2994056,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423662.2995033,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=7oFBul4Q1N48Vf5wYXKLUoVnlZozUtCB"} {"level":"debug","ts":1718423662.2995121,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423662.2996411,"msg":"|302| 325.824µs /login","statusCode":302,"request":77,"latency":0.000325824,"avgLatency":0.000180054,"ipPort":"127.0.0.1:40336","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423662.4634109,"msg":"/validate"} {"level":"warn","ts":1718423662.4634469,"msg":"no jwt found in request"} {"level":"debug","ts":1718423662.4634557,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.4634607,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423662.4634712,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423662.4635828,"msg":"|401| 106.304µs /validate","statusCode":401,"request":78,"latency":0.000106304,"avgLatency":0.000179109,"ipPort":"127.0.0.1:40352","method":"GET","host":"connect.connflex.xyz","path":"/validate","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423662.4959214,"msg":"/login"} {"level":"debug","ts":1718423662.495954,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.4959579,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423662.495992,"msg":"session state set to bwEdWISzS6IkaSavYSN4HZDLswHAqI"} {"level":"debug","ts":1718423662.4960146,"msg":"Login url param normalized to 'https://connect.connflex.xyz/'"} {"level":"debug","ts":1718423662.4960206,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.4960241,"msg":"session requestedURL set to https://connect.connflex.xyz/"} {"level":"debug","ts":1718423662.496027,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423662.496092,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=bwEdWISzS6IkaSavYSN4HZDLswHAqI"} {"level":"debug","ts":1718423662.4960992,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423662.4961665,"msg":"|302| 205.119µs /login","statusCode":302,"request":79,"latency":0.000205119,"avgLatency":0.000179438,"ipPort":"127.0.0.1:40360","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423662.6707895,"msg":"/validate"} {"level":"warn","ts":1718423662.670829,"msg":"no jwt found in request"} {"level":"debug","ts":1718423662.6708384,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.6708417,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423662.6708505,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423662.6709046,"msg":"|401| 94.599µs /validate","statusCode":401,"request":80,"latency":0.000094599,"avgLatency":0.000178378,"ipPort":"127.0.0.1:40372","method":"GET","host":"connect.connflex.xyz","path":"/validate","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423662.7032807,"msg":"/login"} {"level":"debug","ts":1718423662.703315,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.7033186,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423662.7033336,"msg":"session state set to Dr0of0c38N2aNMwvx9xZsJjcCypNSnR5"} {"level":"debug","ts":1718423662.7033484,"msg":"Login url param normalized to 'https://connect.connflex.xyz/'"} {"level":"debug","ts":1718423662.7033522,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.7033553,"msg":"session requestedURL set to https://connect.connflex.xyz/"} {"level":"debug","ts":1718423662.703359,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423662.703424,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=Dr0of0c38N2aNMwvx9xZsJjcCypNSnR5"} {"level":"debug","ts":1718423662.7034311,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423662.7035313,"msg":"|302| 177.79µs /login","statusCode":302,"request":81,"latency":0.00017779,"avgLatency":0.000178371,"ipPort":"127.0.0.1:40380","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423662.9001582,"msg":"/validate"} {"level":"warn","ts":1718423662.900191,"msg":"no jwt found in request"} {"level":"debug","ts":1718423662.900197,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.9002006,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423662.900214,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423662.9003048,"msg":"|401| 95.537µs /validate","statusCode":401,"request":82,"latency":0.000095537,"avgLatency":0.000177361,"ipPort":"127.0.0.1:40396","method":"GET","host":"connect.connflex.xyz","path":"/validate","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423662.934637,"msg":"/login"} {"level":"debug","ts":1718423662.9346757,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.9346795,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423662.9347055,"msg":"session state set to NGH0MXLbKYG39PReSzmxYb375vWNTue"} {"level":"debug","ts":1718423662.9347298,"msg":"Login url param normalized to 'https://connect.connflex.xyz/'"} {"level":"debug","ts":1718423662.9347365,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423662.9347417,"msg":"session requestedURL set to https://connect.connflex.xyz/"} {"level":"debug","ts":1718423662.9347463,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423662.9348152,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=NGH0MXLbKYG39PReSzmxYb375vWNTue"} {"level":"debug","ts":1718423662.9348233,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423662.934885,"msg":"|302| 226.861µs /login","statusCode":302,"request":83,"latency":0.000226861,"avgLatency":0.000177957,"ipPort":"127.0.0.1:40410","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423663.1049767,"msg":"/validate"} {"level":"warn","ts":1718423663.1050196,"msg":"no jwt found in request"} {"level":"debug","ts":1718423663.1050282,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423663.1050327,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423663.105065,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423663.105135,"msg":"|401| 117.673µs /validate","statusCode":401,"request":84,"latency":0.000117673,"avgLatency":0.00017724,"ipPort":"127.0.0.1:40412","method":"GET","host":"connect.connflex.xyz","path":"/validate","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423663.137373,"msg":"/login"} {"level":"debug","ts":1718423663.1374278,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423663.1374347,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423663.1374562,"msg":"session state set to 3zOPacrUfNy31jscdLuMRsNpGDw2QLU"} {"level":"debug","ts":1718423663.1374748,"msg":"Login url param normalized to 'https://connect.connflex.xyz/'"} {"level":"debug","ts":1718423663.1374788,"msg":"domain connect.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423663.1374822,"msg":"session requestedURL set to https://connect.connflex.xyz/"} {"level":"debug","ts":1718423663.1374857,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423663.1375926,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=3zOPacrUfNy31jscdLuMRsNpGDw2QLU"} {"level":"debug","ts":1718423663.1376023,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423663.1376846,"msg":"|302| 259.968µs /login","statusCode":302,"request":85,"latency":0.000259968,"avgLatency":0.000178213,"ipPort":"127.0.0.1:40420","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":"https://infosite.auth.us-east-1.amazoncognito.com/"} {"level":"debug","ts":1718423949.554999,"msg":"/validate"} {"level":"warn","ts":1718423949.5550385,"msg":"no jwt found in request"} {"level":"debug","ts":1718423949.5550475,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423949.555052,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423949.555065,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423949.5551744,"msg":"|401| 96.192µs /validate","statusCode":401,"request":86,"latency":0.000096192,"avgLatency":0.00017726,"ipPort":"127.0.0.1:42724","method":"GET","host":"www.connflex.xyz","path":"/validate","referer":""} {"level":"debug","ts":1718423949.8251545,"msg":"/login"} {"level":"debug","ts":1718423949.8251925,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423949.8251982,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423949.8252172,"msg":"session state set to SNkUkg8cRvP3aB2qeMG2QoyaIOfPZlg"} {"level":"debug","ts":1718423949.825232,"msg":"Login url param normalized to 'https://www.connflex.xyz/'"} {"level":"debug","ts":1718423949.825236,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423949.8252392,"msg":"session requestedURL set to https://www.connflex.xyz/"} {"level":"debug","ts":1718423949.8252437,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423949.8253522,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=SNkUkg8cRvP3aB2qeMG2QoyaIOfPZlg"} {"level":"debug","ts":1718423949.8253622,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423949.8254433,"msg":"|302| 235.817µs /login","statusCode":302,"request":87,"latency":0.000235817,"avgLatency":0.000177933,"ipPort":"127.0.0.1:42730","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":""} {"level":"debug","ts":1718423950.8037846,"msg":"/validate"} {"level":"warn","ts":1718423950.8038256,"msg":"no jwt found in request"} {"level":"debug","ts":1718423950.803834,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423950.803838,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423950.8038673,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423950.8039598,"msg":"|401| 112.077µs /validate","statusCode":401,"request":88,"latency":0.000112077,"avgLatency":0.000177185,"ipPort":"127.0.0.1:42734","method":"GET","host":"www.connflex.xyz","path":"/validate","referer":""} {"level":"debug","ts":1718423950.8859262,"msg":"/login"} {"level":"debug","ts":1718423950.8859634,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423950.8859684,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423950.8860605,"msg":"session state set to SszdEBCLzQnNp2HgI8156KgSGiPBP81c"} {"level":"debug","ts":1718423950.8860834,"msg":"Login url param normalized to 'https://www.connflex.xyz/favicon.ico'"} {"level":"debug","ts":1718423950.8860893,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423950.8860939,"msg":"session requestedURL set to https://www.connflex.xyz/favicon.ico"} {"level":"debug","ts":1718423950.8860977,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423950.8861825,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=SszdEBCLzQnNp2HgI8156KgSGiPBP81c"} {"level":"debug","ts":1718423950.8861904,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423950.8862462,"msg":"|302| 291.538µs /login","statusCode":302,"request":89,"latency":0.000291538,"avgLatency":0.000178469,"ipPort":"127.0.0.1:42748","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":""} {"level":"debug","ts":1718423951.4642887,"msg":"/validate"} {"level":"warn","ts":1718423951.4643602,"msg":"no jwt found in request"} {"level":"debug","ts":1718423951.4643712,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423951.4643757,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423951.4643881,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423951.464462,"msg":"|401| 130.664µs /validate","statusCode":401,"request":90,"latency":0.000130664,"avgLatency":0.000177938,"ipPort":"127.0.0.1:42760","method":"GET","host":"www.connflex.xyz","path":"/validate","referer":""} {"level":"debug","ts":1718423951.7101927,"msg":"/login"} {"level":"debug","ts":1718423951.7102287,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423951.7102344,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423951.7102501,"msg":"session state set to Th1f9ksnW1UZBNPSCrbp0yICHvhwklwL"} {"level":"debug","ts":1718423951.7102652,"msg":"Login url param normalized to 'https://www.connflex.xyz/ads.txt'"} {"level":"debug","ts":1718423951.7102695,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423951.7102726,"msg":"session requestedURL set to https://www.connflex.xyz/ads.txt"} {"level":"debug","ts":1718423951.7102752,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423951.7104428,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=Th1f9ksnW1UZBNPSCrbp0yICHvhwklwL"} {"level":"debug","ts":1718423951.7104583,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423951.710568,"msg":"|302| 296.001µs /login","statusCode":302,"request":91,"latency":0.000296001,"avgLatency":0.000179235,"ipPort":"127.0.0.1:42774","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":""} {"level":"debug","ts":1718423952.3016076,"msg":"/validate"} {"level":"warn","ts":1718423952.3016438,"msg":"no jwt found in request"} {"level":"debug","ts":1718423952.3016515,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423952.3016562,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423952.3016894,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423952.3017766,"msg":"|401| 111.716µs /validate","statusCode":401,"request":92,"latency":0.000111716,"avgLatency":0.000178502,"ipPort":"127.0.0.1:42790","method":"GET","host":"www.connflex.xyz","path":"/validate","referer":""} {"level":"debug","ts":1718423952.5478544,"msg":"/login"} {"level":"debug","ts":1718423952.547891,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423952.5478969,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423952.5479167,"msg":"session state set to j6ZhV3H6I8UhaYGLqXeODse2qOQK0NB"} {"level":"debug","ts":1718423952.547932,"msg":"Login url param normalized to 'https://www.connflex.xyz/app-ads.txt'"} {"level":"debug","ts":1718423952.5479357,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423952.547939,"msg":"session requestedURL set to https://www.connflex.xyz/app-ads.txt"} {"level":"debug","ts":1718423952.5479422,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423952.5480196,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=j6ZhV3H6I8UhaYGLqXeODse2qOQK0NB"} {"level":"debug","ts":1718423952.548028,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423952.5481293,"msg":"|302| 203.791µs /login","statusCode":302,"request":93,"latency":0.000203791,"avgLatency":0.000178773,"ipPort":"127.0.0.1:42804","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":""} {"level":"debug","ts":1718423953.1434517,"msg":"/validate"} {"level":"warn","ts":1718423953.143489,"msg":"no jwt found in request"} {"level":"debug","ts":1718423953.1434977,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423953.1435022,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423953.143525,"msg":"CaptureWriter.Write set w.StatusCode 401"} {"level":"info","ts":1718423953.1436145,"msg":"|401| 101.212µs /validate","statusCode":401,"request":94,"latency":0.000101212,"avgLatency":0.000177948,"ipPort":"127.0.0.1:42806","method":"GET","host":"www.connflex.xyz","path":"/validate","referer":""} {"level":"debug","ts":1718423953.3880317,"msg":"/login"} {"level":"debug","ts":1718423953.3880718,"msg":"domain vouch.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423953.3880758,"msg":"setting the cookie domain to connflex.xyz"} {"level":"debug","ts":1718423953.388096,"msg":"session state set to qR5dbMbzGNVN334siMRCAr0ZwAyQK"} {"level":"debug","ts":1718423953.3881116,"msg":"Login url param normalized to 'https://www.connflex.xyz/sellers.json'"} {"level":"debug","ts":1718423953.3881154,"msg":"domain www.connflex.xyz matched array value at [0]=connflex.xyz"} {"level":"debug","ts":1718423953.3881342,"msg":"session requestedURL set to https://www.connflex.xyz/sellers.json"} {"level":"debug","ts":1718423953.388139,"msg":"saving session with failcount 1"} {"level":"debug","ts":1718423953.3881931,"msg":"redirecting to oauthURL https://infosite.auth.us-east-1.amazoncognito.com/oauth2/authorize?client_id=5a4qd77b07f4cq5k7cd2upl1lu&redirect_uri=https%3A%2F%2Fvouch.connflex.xyz%2Fauth&response_type=code&scope=openid+email+profile&state=qR5dbMbzGNVN334siMRCAr0ZwAyQK"} {"level":"debug","ts":1718423953.3882046,"msg":"CaptureWriter.Write set w.StatusCode 302"} {"level":"info","ts":1718423953.3883066,"msg":"|302| 202.05µs /login","statusCode":302,"request":95,"latency":0.00020205,"avgLatency":0.000178201,"ipPort":"127.0.0.1:42814","method":"GET","host":"vouch.connflex.xyz","path":"/login","referer":""}