diff --git a/nginx/server.conf b/nginx/server.conf new file mode 100644 index 0000000..52bc16b --- /dev/null +++ b/nginx/server.conf @@ -0,0 +1,18 @@ +server { + listen 443 ssl; + listen 443 quic; + listen [::]:443 ssl; + listen [::]:443 quic; + + server_name ; + + location / { + proxy_pass http://; + proxy_http_version 1.1; + proxy_set_header Connection ""; + } + + location /.well-known/acme-challenge { + root /var/www/html/; + } +} \ No newline at end of file