Skip to content

Commit

Permalink
imagery: update titiler to new http2 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Firefishy committed Feb 18, 2025
1 parent 99d99be commit 173952c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions cookbooks/imagery/templates/default/nginx_titiler.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ upstream titiler_api_backend {
}

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;

http2 on;

server_name <%= @name %> <% @aliases.each do |alias_name| %> <%= alias_name %><%- end -%>;

http2_max_concurrent_streams 512;
Expand Down

0 comments on commit 173952c

Please sign in to comment.