Created
January 9, 2026 14:48
-
-
Save dgibbs64/80fb4cc739d1014e186ed07fd5fe3ef3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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