@@ -219,85 +219,87 @@ services:
219
219
ssl on;\" ||
220
220
SSL_BLOCK=\"ssl off;\" &&
221
221
echo $$SSL_BLOCK &&
222
- sed -i -e \"s/include \\/etc\\/nginx\\/conf\\.d\\/\\*\.conf;//\"
223
- -e \"\\$$s/}/
224
- error_log \\/var\\/log\\/error.log;\\n
225
- gzip on;\\n
226
- gzip_vary on;\\n
227
- gzip_min_length 10240;\\n
228
- gzip_proxied expired no-cache no-store private auth;\\n
229
- gzip_types text\\/plain text\\/css text\\/xml text\\/javascript application\\/x-javascript application\\/xml;\\n
230
- gzip_disable \\\"MSIE [1-6]\.\\\";\\n
231
- server {\\n
232
- listen 80;\\n
233
- listen 443;\\n
234
- auth_basic $${AUTH_BASIC_STRING};\\n
235
- auth_basic_user_file \\/etc\\/nginx\\/\.htpasswd;\\n
236
- $${SSL_BLOCK}\\n
237
- proxy_set_header Host \\$$host;\\n
238
- proxy_set_header X-Real-IP \\$$remote_addr;\\n
239
- proxy_set_header X-Forwarded-For \\$$proxy_add_x_forwarded_for;\\n
240
- if (\\$$http_referer ~* \\\"\\/airflow\\/*.*\\\") {\\n
241
- set \\$$is_airflow \\\"A\\\";\\n
222
+ if ! grep airflow /etc/nginx/nginx.conf; then
223
+ sed -i -e \"s/include \\/etc\\/nginx\\/conf\\.d\\/\\*\.conf;//\"
224
+ -e \"\\$$s/}/
225
+ error_log \\/var\\/log\\/error.log;\\n
226
+ gzip on;\\n
227
+ gzip_vary on;\\n
228
+ gzip_min_length 10240;\\n
229
+ gzip_proxied expired no-cache no-store private auth;\\n
230
+ gzip_types text\\/plain text\\/css text\\/xml text\\/javascript application\\/x-javascript application\\/xml;\\n
231
+ gzip_disable \\\"MSIE [1-6]\.\\\";\\n
232
+ server {\\n
233
+ listen 80;\\n
234
+ listen 443;\\n
235
+ auth_basic $${AUTH_BASIC_STRING};\\n
236
+ auth_basic_user_file \\/etc\\/nginx\\/\.htpasswd;\\n
237
+ $${SSL_BLOCK}\\n
238
+ proxy_set_header Host \\$$host;\\n
239
+ proxy_set_header X-Real-IP \\$$remote_addr;\\n
240
+ proxy_set_header X-Forwarded-For \\$$proxy_add_x_forwarded_for;\\n
241
+ if (\\$$http_referer ~* \\\"\\/airflow\\/*.*\\\") {\\n
242
+ set \\$$is_airflow \\\"A\\\";\\n
243
+ }\\n
244
+ if (\\$$request_uri !~* ^\\/airflow\\/.*) {\\n
245
+ set \\$$is_airflow \\\"\\$${is_airflow}B\\\";\\n
246
+ }\\n
247
+ if (\\$$is_airflow ~* AB) { \\n
248
+ rewrite ^\\/*(.*) \\/airflow\\/\\$$1 permanent;\\n
249
+ }\\n
250
+ if (\\$$http_referer ~* \\\".*\\/flower\\/*.*\\\") {\\n
251
+ set \\$$is_flower \\\"A\\\";\\n
252
+ }\\n
253
+ if (\\$$request_uri !~* ^\\/flower\\/.*) {\\n
254
+ set \\$$is_flower \\\"\\$${is_flower}B\\\";\\n
255
+ }\\n
256
+ if (\\$$is_flower = AB) { \\n
257
+ rewrite ^\\/*(.*) \\/flower\\/\\$$1 permanent;\\n
258
+ }\\n
259
+ if (\\$$http_referer ~* \\\".*\\/visualizer\\/*.*\\\") {\\n
260
+ set \\$$is_visualizer \\\"A\\\";\\n
261
+ }\\n
262
+ if (\\$$request_uri !~* ^\\/visualizer\\/.*) {\\n
263
+ set \\$$is_visualizer \\\"\\$${is_visualizer}B\\\";\\n
264
+ }\\n
265
+ if (\\$$is_visualizer = AB) { \\n
266
+ rewrite ^\\/*(.*) \\/visualizer\\/\\$$1 permanent;\\n
267
+ }\\n
268
+ if (\\$$http_referer ~* \\\".*\\/rabbitmq\\/*.*\\\") {\\n
269
+ set \\$$is_rabbitmq \\\"A\\\";\\n
270
+ }\\n
271
+ if (\\$$request_uri !~* ^\\/rabbitmq\\/.*) {\\n
272
+ set \\$$is_rabbitmq \\\"\\$${is_rabbitmq}B\\\";\\n
273
+ }\\n
274
+ if (\\$$is_rabbitmq = AB) { \\n
275
+ rewrite ^\\/*(.*) \\/rabbitmq\\/\\$$1 permanent;\\n
276
+ }\\n
277
+ location \\/ {\\n
278
+ rewrite . \\/airflow\\/admin\\/ permanent;\\n
279
+ }\\n
280
+ location ^~ \\/airflow\\/ {\\n
281
+ proxy_redirect http:\\/\\/\\$$host \\$$scheme:\\/\\/\\$$host;\\n
282
+ proxy_pass http:\\/\\/webserver:8080\\/;\\n
283
+ }\\n
284
+ location ^~ \\/flower\\/ {\\n
285
+ sub_filter_last_modified on;\\n
286
+ sub_filter_once off;\\n
287
+ sub_filter_types application\\/javascript;\\n
288
+ sub_filter \\\"url_prefix() +\\\" \\\"'\\/flower' +\\\";\\n
289
+ proxy_redirect http:\\/\\/\\$$host \\$$scheme:\\/\\/\\$$host;\\n
290
+ proxy_pass http:\\/\\/flower:5555\\/;\\n
291
+ }\\n
292
+ location ^~ \\/visualizer\\/ {\\n
293
+ proxy_redirect http:\\/\\/\\$$host \\$$scheme:\\/\\/\\$$host;\\n
294
+ proxy_pass http:\\/\\/visualizer:8080\\/;\\n
295
+ }\\n
296
+ location ^~ \\/rabbitmq\\/ {\\n
297
+ proxy_pass http:\\/\\/rabbitmq:15672\\/;\\n
298
+ proxy_redirect off;\\n
299
+ }\\n
242
300
}\\n
243
- if (\\$$request_uri !~* ^\\/airflow\\/.*) {\\n
244
- set \\$$is_airflow \\\"\\$${is_airflow}B\\\";\\n
245
- }\\n
246
- if (\\$$is_airflow ~* AB) { \\n
247
- rewrite ^\\/*(.*) \\/airflow\\/\\$$1 permanent;\\n
248
- }\\n
249
- if (\\$$http_referer ~* \\\".*\\/flower\\/*.*\\\") {\\n
250
- set \\$$is_flower \\\"A\\\";\\n
251
- }\\n
252
- if (\\$$request_uri !~* ^\\/flower\\/.*) {\\n
253
- set \\$$is_flower \\\"\\$${is_flower}B\\\";\\n
254
- }\\n
255
- if (\\$$is_flower = AB) { \\n
256
- rewrite ^\\/*(.*) \\/flower\\/\\$$1 permanent;\\n
257
- }\\n
258
- if (\\$$http_referer ~* \\\".*\\/visualizer\\/*.*\\\") {\\n
259
- set \\$$is_visualizer \\\"A\\\";\\n
260
- }\\n
261
- if (\\$$request_uri !~* ^\\/visualizer\\/.*) {\\n
262
- set \\$$is_visualizer \\\"\\$${is_visualizer}B\\\";\\n
263
- }\\n
264
- if (\\$$is_visualizer = AB) { \\n
265
- rewrite ^\\/*(.*) \\/visualizer\\/\\$$1 permanent;\\n
266
- }\\n
267
- if (\\$$http_referer ~* \\\".*\\/rabbitmq\\/*.*\\\") {\\n
268
- set \\$$is_rabbitmq \\\"A\\\";\\n
269
- }\\n
270
- if (\\$$request_uri !~* ^\\/rabbitmq\\/.*) {\\n
271
- set \\$$is_rabbitmq \\\"\\$${is_rabbitmq}B\\\";\\n
272
- }\\n
273
- if (\\$$is_rabbitmq = AB) { \\n
274
- rewrite ^\\/*(.*) \\/rabbitmq\\/\\$$1 permanent;\\n
275
- }\\n
276
- location \\/ {\\n
277
- rewrite . \\/airflow\\/admin\\/ permanent;\\n
278
- }\\n
279
- location ^~ \\/airflow\\/ {\\n
280
- proxy_redirect http:\\/\\/\\$$host \\$$scheme:\\/\\/\\$$host;\\n
281
- proxy_pass http:\\/\\/webserver:8080\\/;\\n
282
- }\\n
283
- location ^~ \\/flower\\/ {\\n
284
- sub_filter_last_modified on;\\n
285
- sub_filter_once off;\\n
286
- sub_filter_types application\\/javascript;\\n
287
- sub_filter \\\"url_prefix() +\\\" \\\"'\\/flower' +\\\";\\n
288
- proxy_redirect http:\\/\\/\\$$host \\$$scheme:\\/\\/\\$$host;\\n
289
- proxy_pass http:\\/\\/flower:5555\\/;\\n
290
- }\\n
291
- location ^~ \\/visualizer\\/ {\\n
292
- proxy_redirect http:\\/\\/\\$$host \\$$scheme:\\/\\/\\$$host;\\n
293
- proxy_pass http:\\/\\/visualizer:8080\\/;\\n
294
- }\\n
295
- location ^~ \\/rabbitmq\\/ {\\n
296
- proxy_pass http:\\/\\/rabbitmq:15672\\/;\\n
297
- proxy_redirect off;\\n
298
- }\\n
299
- }\\n
300
- }/\" /etc/nginx/nginx.conf &&
301
+ }/\" /etc/nginx/nginx.conf;
302
+ fi &&
301
303
unset BASIC_AUTH_PASSWORD &&
302
304
unset BASIC_AUTH_USERNAME &&
303
305
unset SSL_CERTIFICATE &&
0 commit comments