Skip to content

Commit

Permalink
Merge pull request #161 from betagouv/update/activate-http2
Browse files Browse the repository at this point in the history
Active http2 dans la configuration nginx
  • Loading branch information
baptou12 authored Oct 18, 2023
2 parents 45e7150 + ec133b5 commit 76bfc51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/bootstrap/templates/nginx_config.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ server {
{{ well_known_section(webroot_path, challenge_proxy) }}

{% if ssl_exists %}
listen 443 ssl;
listen 443 ssl http2;
{{ ssl_section() }}
access_log /var/log/nginx/{{ service_domain }}.ssl.access.log combined;
error_log /var/log/nginx/{{ service_domain }}.ssl.error.log;
Expand All @@ -102,7 +102,7 @@ server {
server_name {{ service_domain }};

{% if ssl_exists %}
listen 443 ssl;
listen 443 ssl http2;
{{ ssl_section() }}
access_log /var/log/nginx/{{ service_domain }}.ssl.access.log combined;
error_log /var/log/nginx/{{ service_domain }}.ssl.error.log;
Expand Down

0 comments on commit 76bfc51

Please sign in to comment.