Skip to content

Instantly share code, notes, and snippets.

@dgibbs64
Created January 9, 2026 14:48
Show Gist options
  • Select an option

  • Save dgibbs64/80fb4cc739d1014e186ed07fd5fe3ef3 to your computer and use it in GitHub Desktop.

Select an option

Save dgibbs64/80fb4cc739d1014e186ed07fd5fe3ef3 to your computer and use it in GitHub Desktop.
events {}
http {
upstream backend {
server upstream:443 max_fails=0 fail_timeout=0;
}
server {
listen 80;
location / {
proxy_pass https://backend;
proxy_ssl_verify off;
proxy_ssl_server_name off;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment