@@ -21,7 +21,7 @@ server {
21
21
proxy_pass ${HTTP_PROTOCOL}://${COMMUNITY_SERVICE};
22
22
proxy_set_header Host ${COMMUNITY_SERVICE};
23
23
proxy_set_header X-Forwarded-Host $http_host;
24
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for
24
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
25
25
sub_filter_types application/json text/html;
26
26
sub_filter "${HTTP_PROTOCOL}://${COMMUNITY_SERVICE}" "$scheme://$http_host";
27
27
sub_filter_once off;
@@ -41,7 +41,7 @@ server {
41
41
proxy_pass ${HTTP_PROTOCOL}://${IDENTITY_SERVICE};
42
42
proxy_set_header Host ${IDENTITY_SERVICE};
43
43
proxy_set_header X-Forwarded-Host $http_host;
44
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for
44
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
45
45
proxy_ssl_verify off;
46
46
proxy_ssl_trusted_certificate /app/certs/server.crt;
47
47
}
@@ -58,7 +58,7 @@ server {
58
58
proxy_pass ${HTTP_PROTOCOL}://${WORKSHOP_SERVICE};
59
59
proxy_set_header Host ${WORKSHOP_SERVICE};
60
60
proxy_set_header X-Forwarded-Host $http_host;
61
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for
61
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
62
62
sub_filter_types application/json text/html;
63
63
sub_filter "${HTTP_PROTOCOL}://${WORKSHOP_SERVICE}" "$scheme://$http_host";
64
64
sub_filter_once off;
@@ -78,7 +78,7 @@ server {
78
78
proxy_pass ${HTTP_PROTOCOL}://${CHATBOT_SERVICE};
79
79
proxy_set_header Host ${CHATBOT_SERVICE};
80
80
proxy_set_header X-Forwarded-Host $http_host;
81
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for
81
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
82
82
sub_filter_types application/json text/html;
83
83
sub_filter "${HTTP_PROTOCOL}://${CHATBOT_SERVICE}" "$scheme://$http_host";
84
84
sub_filter_once off;
@@ -125,7 +125,7 @@ server {
125
125
proxy_pass ${HTTP_PROTOCOL}://${COMMUNITY_SERVICE};
126
126
proxy_set_header Host ${COMMUNITY_SERVICE};
127
127
proxy_set_header X-Forwarded-Host $http_host;
128
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for
128
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
129
129
sub_filter_types application/json text/html;
130
130
sub_filter "${HTTP_PROTOCOL}://${COMMUNITY_SERVICE}" "$scheme://$http_host";
131
131
sub_filter_once off;
@@ -143,7 +143,7 @@ server {
143
143
proxy_pass ${HTTP_PROTOCOL}://${IDENTITY_SERVICE};
144
144
proxy_set_header Host ${IDENTITY_SERVICE};
145
145
proxy_set_header X-Forwarded-Host $http_host;
146
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for
146
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
147
147
}
148
148
149
149
location /workshop/ {
@@ -158,7 +158,7 @@ server {
158
158
proxy_pass ${HTTP_PROTOCOL}://${WORKSHOP_SERVICE};
159
159
proxy_set_header Host ${WORKSHOP_SERVICE};
160
160
proxy_set_header X-Forwarded-Host $http_host;
161
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for
161
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
162
162
sub_filter_types application/json text/html;
163
163
sub_filter "${HTTP_PROTOCOL}://${WORKSHOP_SERVICE}" "$scheme://$http_host";
164
164
sub_filter_once off;
@@ -176,7 +176,7 @@ server {
176
176
proxy_pass ${HTTP_PROTOCOL}://${CHATBOT_SERVICE};
177
177
proxy_set_header Host ${CHATBOT_SERVICE};
178
178
proxy_set_header X-Forwarded-Host $http_host;
179
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for
179
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
180
180
sub_filter_types application/json text/html;
181
181
sub_filter "://${CHATBOT_SERVICE}" "://$http_host";
182
182
sub_filter_once off;
0 commit comments