@@ -21,7 +21,7 @@ server {
2121 proxy_pass ${HTTP_PROTOCOL}://${COMMUNITY_SERVICE};
2222 proxy_set_header Host ${COMMUNITY_SERVICE};
2323 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;
2525 sub_filter_types application/json text/html;
2626 sub_filter "${HTTP_PROTOCOL}://${COMMUNITY_SERVICE}" "$scheme://$http_host";
2727 sub_filter_once off;
@@ -41,7 +41,7 @@ server {
4141 proxy_pass ${HTTP_PROTOCOL}://${IDENTITY_SERVICE};
4242 proxy_set_header Host ${IDENTITY_SERVICE};
4343 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;
4545 proxy_ssl_verify off;
4646 proxy_ssl_trusted_certificate /app/certs/server.crt;
4747 }
@@ -58,7 +58,7 @@ server {
5858 proxy_pass ${HTTP_PROTOCOL}://${WORKSHOP_SERVICE};
5959 proxy_set_header Host ${WORKSHOP_SERVICE};
6060 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;
6262 sub_filter_types application/json text/html;
6363 sub_filter "${HTTP_PROTOCOL}://${WORKSHOP_SERVICE}" "$scheme://$http_host";
6464 sub_filter_once off;
@@ -78,7 +78,7 @@ server {
7878 proxy_pass ${HTTP_PROTOCOL}://${CHATBOT_SERVICE};
7979 proxy_set_header Host ${CHATBOT_SERVICE};
8080 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;
8282 sub_filter_types application/json text/html;
8383 sub_filter "${HTTP_PROTOCOL}://${CHATBOT_SERVICE}" "$scheme://$http_host";
8484 sub_filter_once off;
@@ -125,7 +125,7 @@ server {
125125 proxy_pass ${HTTP_PROTOCOL}://${COMMUNITY_SERVICE};
126126 proxy_set_header Host ${COMMUNITY_SERVICE};
127127 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;
129129 sub_filter_types application/json text/html;
130130 sub_filter "${HTTP_PROTOCOL}://${COMMUNITY_SERVICE}" "$scheme://$http_host";
131131 sub_filter_once off;
@@ -143,7 +143,7 @@ server {
143143 proxy_pass ${HTTP_PROTOCOL}://${IDENTITY_SERVICE};
144144 proxy_set_header Host ${IDENTITY_SERVICE};
145145 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;
147147 }
148148
149149 location /workshop/ {
@@ -158,7 +158,7 @@ server {
158158 proxy_pass ${HTTP_PROTOCOL}://${WORKSHOP_SERVICE};
159159 proxy_set_header Host ${WORKSHOP_SERVICE};
160160 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;
162162 sub_filter_types application/json text/html;
163163 sub_filter "${HTTP_PROTOCOL}://${WORKSHOP_SERVICE}" "$scheme://$http_host";
164164 sub_filter_once off;
@@ -176,7 +176,7 @@ server {
176176 proxy_pass ${HTTP_PROTOCOL}://${CHATBOT_SERVICE};
177177 proxy_set_header Host ${CHATBOT_SERVICE};
178178 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;
180180 sub_filter_types application/json text/html;
181181 sub_filter "://${CHATBOT_SERVICE}" "://$http_host";
182182 sub_filter_once off;
0 commit comments