Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mon-ius committed Mar 11, 2024
1 parent 55f08fb commit 0667837
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -226,25 +226,23 @@ EOF
{
listen 443 ssl;
http2 on;
http2_body_preread_size 512k;
server_name ${AI_FULL_DOMAIN};
ssl_certificate ${SSL_FULL_CHAIN};
ssl_certificate_key ${SSL_KEY};
ssl_dhparam ${SSL_DHPARAM};
resolver 1.1.1.1 8.8.8.8;
client_max_body_size 0;
client_max_body_size 100M;
client_body_buffer_size 70m;
client_header_buffer_size 50k;
large_client_header_buffers 2 50k;
location / {
proxy_pass http://${AI_SERVICE_HOST}:${AI_SERVICE_PORT}/;
proxy_buffering off;
proxy_redirect off;
proxy_http_version 1.1;
proxy_request_buffering on;
proxy_request_buffering off;
proxy_connect_timeout 20s;
proxy_send_timeout 600s;
Expand Down

0 comments on commit 0667837

Please sign in to comment.