Jump to content
Sign in to follow this  
dreamax

Nginx HTTP2

Recommended Posts

Hi there,

 

you are using nginx, if its version >= 1.9.5 (for example nginx-1.10.2) and

not the old one from the official debian repo, you should consider to enable HTTP/2

 

HTTP/1.1:

server {
    ..
    listen 443 ssl;
    ..
}

HTTP/2:

server {
    ..
    listen 443 ssl http2;
    ..
}

Remeber, just available from nginx 1.9.5 onward.

 

 

Thanks,

dream

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×