Skip to content

Commit

Permalink
Add support for http2 in NGINX
Browse files Browse the repository at this point in the history
  • Loading branch information
ldeluigi committed Feb 22, 2023
1 parent 3dde095 commit 5ce97a1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,7 @@ Scripts/

# temp files
temp/

# Localhost certificates
*.crt
*.key
4 changes: 2 additions & 2 deletions backend/nginx/ssl.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
listen 443 ssl;
listen [::]:443 ssl;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name backend.commanderspellbook.com;
ssl_certificate /etc/nginx/ssl/cert.crt;
ssl_certificate_key /etc/nginx/ssl/cert.key;
Expand Down

0 comments on commit 5ce97a1

Please sign in to comment.