mirror of
https://github.com/ArcticFoxes-net/Signal-TLS-Proxy
synced 2024-11-18 01:41:34 -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 {
|
http {
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
|
||||||
location /.well-known/acme-challenge/ {
|
location /.well-known/acme-challenge/ {
|
||||||
# init-certificate.sh uses --standalone, so we must proxy renewals to the certbot server
|
# init-certificate.sh uses --standalone, so we must proxy renewals to the certbot server
|
||||||
@ -28,6 +29,7 @@ stream {
|
|||||||
|
|
||||||
server {
|
server {
|
||||||
listen 443 ssl;
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
proxy_pass relay;
|
proxy_pass relay;
|
||||||
|
|
||||||
access_log off;
|
access_log off;
|
||||||
|
Loading…
Reference in New Issue
Block a user