Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Forcing everything to use https - Page 2
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Forcing everything to use https

2»

Comments

  • @JackieSung said:
    If you are using Nginx

    if ( $scheme = http ){
    return 301 https://$server_name$request_uri;
    }

    Thats interesting. So nginx can actually serve http and https in one server block? Might save me some typing since my http block is usually nothing but a redirect anyways.

  • Yup.Pretty much.All http will be redirected to https compulsively.

    @mksh said:

    @JackieSung said:
    If you are using Nginx

    if ( $scheme = http ){
    return 301 https://$server_name$request_uri;
    }

    Thats interesting. So nginx can actually serve http and https in one server block? Might save me some typing since my http block is usually nothing but a redirect anyways.

Sign In or Register to comment.