File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8989 path : tests/test-results
9090 - store_artifacts :
9191 path : dockerLogs/
92+ - store_artifacts :
93+ path : var/log/
9294
9395workflows :
9496 version : 2
Original file line number Diff line number Diff line change @@ -41,5 +41,5 @@ SUBMISSIONS_API_URL=http://django:8000/api
4141# Nginx settings
4242# -----------------------------------------------------------------------------
4343HTTPS=False
44- RATE_LIMIT=100
44+ RATE_LIMIT=10000
4545DOMAIN_NAME=localhost
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ services:
1111 volumes :
1212 - ./src/staticfiles:/var/www/django/static
1313 - ./maintenance_mode/:/srv
14- - ./certsNginx :/var/cache/nginx/acme-letsencrypt
14+ - ./nginx/certs/ :/var/cache/nginx/acme-letsencrypt
1515 - ./nginx/:/etc/nginx/templates/
1616 - ./var/log/nginx/:/var/log/nginx
1717 restart : unless-stopped
@@ -282,4 +282,4 @@ services:
282282networks :
283283 frontend :
284284 backend :
285- # internal: true
285+ internal : true
Original file line number Diff line number Diff line change 11charset utf-8;
2- client_max_body_size 10480m;
3- client_body_buffer_size 32m;
2+ client_max_body_size 0;
3+ proxy_buffering off;
4+ proxy_request_buffering off;
45sendfile on;
56gzip on;
67
Original file line number Diff line number Diff line change 33 location / {
44 proxy_pass http://flower:5555;
55 }
6-
76}
Original file line number Diff line number Diff line change @@ -17,16 +17,4 @@ server {
1717
1818 proxy_pass http://minio:9000;
1919 }
20-
21- location /console/ {
22- rewrite ^/console/(.*)$ /$1 break;
23-
24- # To support websocket
25- proxy_http_version 1.1;
26- proxy_set_header Upgrade $http_upgrade;
27- proxy_set_header Connection "Upgrade";
28-
29- chunked_transfer_encoding off;
30- proxy_pass http://minio;
31- }
3220}
Original file line number Diff line number Diff line change @@ -75,6 +75,18 @@ server {
7575
7676 proxy_pass http://django:8000;
7777 }
78+ # MinIO console
79+ location /console/ {
80+ rewrite ^/console/(.*)$ /$1 break;
81+
82+ # To support websocket
83+ proxy_http_version 1.1;
84+ proxy_set_header Upgrade $http_upgrade;
85+ proxy_set_header Connection "Upgrade";
86+
87+ chunked_transfer_encoding off;
88+ proxy_pass http://minio:9001;
89+ }
7890 include extra/maintenance.conf;
7991
8092}
You can’t perform that action at this time.
0 commit comments