Justin Su
Justin Su
Doesn't seem to help; I still get the full stack trace. Would this (from 0.3.1 changelog) be relevant? > Ensure stack from the caller is displayed while formatting exception of...
Not exactly. I'm trying to suppress the stack trace _entirely_, so the only line that is output is: ``` 2021-04-20 22:32:27.132 | ERROR | __main__:foo:9 - [message] ``` as if...
I just tested the script with a fresh system. Booting the droplet with a restored snapshot works without a hitch. Did you run the script with any extra parameters?
By that I mean an option for Caddy to accept connections only over QUIC (only listen on UDP?), leaving the TCP port open for another server to listen on. What...
I'd like to experiment with QUIC while keeping nginx for handling other connections since Caddy's cipher suites don't support some legacy clients that I need. Previously, I tested with quic-reverse-proxy,...
I'm aware of that flag, but I'm trying to force QUIC on the server, as opposed to the client side.
I've found a way to split TCP/UDP traffic incoming on port 443 with iptables NAT, but if anybody knows of a better method, please do let me know.
@Henrocker Here is a series of iptables rules that will split the traffic: ``` -A PREROUTING -p tcp -m tcp --dport 443 -j REDIRECT --to-ports 60443 -A PREROUTING -p tcp...
Just tested with the mod_pagespeed build process. Indeed, Closure Compiler doesn't like the omission of `var` declarations. Right now, `getEntriesByType('paint')` always returns an empty array. The entries only populate after...
nginx configuration ``` error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; user www-data; events {} http { access_log /var/log/nginx/access.log; default_type application/octet-stream; include /etc/nginx/mime.types; index index.html index.php; ssl_certificate /etc/nginx/ecdsa/fullchain.pem; ssl_certificate_key /etc/nginx/ecdsa/privkey.pem; pagespeed FileCachePath /var/cache/pagespeed; #pagespeed...