mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 10:43:11 +01:00
11 lines
237 B
Plaintext
11 lines
237 B
Plaintext
|
# Context: https://chat.openai.com/share/9b3c0e79-15bc-4780-aa88-f0dd149bdaac
|
||
|
|
||
|
map $http_upgrade $connection_upgrade {
|
||
|
default upgrade;
|
||
|
'' close;
|
||
|
}
|
||
|
|
||
|
map $remote_addr $endpoint_addr {
|
||
|
"~:" [::1];
|
||
|
default 127.0.0.1;
|
||
|
}
|