[SOGo] SOGo refuses to bind to IPv6, so force IPv4 in proxy_pass, fixes #1006
This commit is contained in:
@@ -108,7 +108,7 @@ server {
|
||||
}
|
||||
|
||||
location ^~ /Microsoft-Server-ActiveSync {
|
||||
proxy_pass http://sogo:20000/SOGo/Microsoft-Server-ActiveSync;
|
||||
include /etc/nginx/conf.d/sogo_eas.active;
|
||||
proxy_connect_timeout 1000;
|
||||
proxy_next_upstream timeout error;
|
||||
proxy_send_timeout 1000;
|
||||
@@ -130,7 +130,7 @@ server {
|
||||
}
|
||||
|
||||
location ^~ /SOGo {
|
||||
proxy_pass http://sogo:20000;
|
||||
include /etc/nginx/conf.d/sogo.active;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header Host $http_host;
|
||||
@@ -290,7 +290,7 @@ server {
|
||||
}
|
||||
|
||||
location ^~ /Microsoft-Server-ActiveSync {
|
||||
proxy_pass http://sogo:20000/SOGo/Microsoft-Server-ActiveSync;
|
||||
include /etc/nginx/conf.d/templates/sogo_proxy.template;
|
||||
proxy_connect_timeout 1000;
|
||||
proxy_next_upstream timeout error;
|
||||
proxy_send_timeout 1000;
|
||||
@@ -312,7 +312,7 @@ server {
|
||||
}
|
||||
|
||||
location ^~ /SOGo {
|
||||
proxy_pass http://sogo:20000;
|
||||
include /etc/nginx/conf.d/sogo.active;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header Host $http_host;
|
||||
|
1
data/conf/nginx/templates/sogo.template
Normal file
1
data/conf/nginx/templates/sogo.template
Normal file
@@ -0,0 +1 @@
|
||||
proxy_pass http://${IPV4_NETWORK}.248:20000;
|
1
data/conf/nginx/templates/sogo_eas.template
Normal file
1
data/conf/nginx/templates/sogo_eas.template
Normal file
@@ -0,0 +1 @@
|
||||
proxy_pass http://${IPV4_NETWORK}.248:20000/SOGo/Microsoft-Server-ActiveSync;
|
0
data/conf/nginx/templates/sogo_proxy.template
Normal file
0
data/conf/nginx/templates/sogo_proxy.template
Normal file
Reference in New Issue
Block a user