D
D
Dmitry2015-10-05 09:12:00
Nginx
Dmitry, 2015-10-05 09:12:00

How to force the NGINX+Apache link to work from http to https?

Actually the whole point is in the question.
Used by PHP.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
T
TyzhSysAdmin, 2015-10-05
@POS_troi

There is no essence in your question, because you can understand what is written in general in many ways :)
Do you need to force redirect users from http to https?

A
Altyn Bek, 2016-04-02
@altyn

Recently found here!
blog.kplus.pro/adm/how-enable-https-on-website.html
Plus getting a certificate from Woosign
I don't know how important getting a certificate is for you. But there is nginx and about http, https

server{
    listen 80 default_server;
    server_name exemple.com;
    rewrite ^(/.*)$ https://$host$1 permanent;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question