18 lines
No EOL
351 B
Text
18 lines
No EOL
351 B
Text
server {
|
|
listen 443 ssl;
|
|
listen 443 quic;
|
|
listen [::]:443 ssl;
|
|
listen [::]:443 quic;
|
|
|
|
server_name <replace>;
|
|
|
|
location / {
|
|
proxy_pass http://<replace>;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection "";
|
|
}
|
|
|
|
location /.well-known/acme-challenge {
|
|
root /var/www/html/<replace>;
|
|
}
|
|
} |