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:
parent
1867d057f2
commit
1db17f6c12
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user