1
0
mirror of https://github.com/ArcticFoxes-net/Signal-TLS-Proxy synced 2024-11-17 17:41:32 -05:00

Add IPv6 support

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2023-08-16 04:02:46 -07:00 committed by GitHub
parent 1867d057f2
commit 1db17f6c12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,7 @@ events {
http {
server {
listen 80;
listen [::]:80;
location /.well-known/acme-challenge/ {
# init-certificate.sh uses --standalone, so we must proxy renewals to the certbot server
@ -28,6 +29,7 @@ stream {
server {
listen 443 ssl;
listen [::]:443 ssl;
proxy_pass relay;
access_log off;