Nginx Redirect HTTP para HTTPS automaticamente para subdomínios

1

Estou tentando redirecionar todo o meu tráfego de http para https automaticamente. Como posso fazer um redirecionamento 301 para todos os meus domínios e subdomínios?

Este é o arquivo NGNIX Config

upstream app_server {
    server unix:/run/DigitalOceanOneClick/unicorn.sock fail_timeout=0;
}

server {
        listen 80 default_server;
        listen [::]:80 default_server;
        server_name sprintsocial.io app.sprintsocial.io admin.sprintsocial.io;
#       return 301 https://$server_name$request_uri;
}

server {
    #listen   80;
    listen 443;
    root /home/rails/sprintsocial/public;
    #server_name _;
    server_name sprintsocial.io app.sprintsocial.io admin.sprintsocial.io;
    ssl on;
    ssl_certificate /home/sprintsocial.io.chained.crt;
    ssl_certificate_key /home/sprintsocial.io.key;
    index index.htm index.html;
#    return 301 https://$server_name$request_uri;

#    rewrite ^/(.*) https://app.sprintsocial.io/$1 permanent;
#    rewrite ^/(.*) https://admin.sprintsocial.io/$1 permanent;

    location / {
            try_files $uri/index.html $uri.html $uri @app;
    }

    location ~* ^.+\.(jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|mp3|flv|mpeg|avi)$ {
                    try_files $uri @app;
            }

     location @app {
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header Host $http_host;
            proxy_redirect off;
            proxy_pass http://app_server;
    }
}
    
por Harsha M V 17.10.2017 / 17:15

1 resposta

5

Você deve conseguir fazer isso com:

server {
    listen [::]:80 default_server ipv6only=off;
    server_name sprintsocial.io app.sprintsocial.io admin.sprintsocial.io;
    return 301 https://$host$request_uri;
}

Por favor, note que:

  • listen [::]:80 ipv6only=off liga-se ao ipv4 e ao ipv6,
  • A variável $host vem da solicitação, $server_name vem de server , que lida com a solicitação, grande diferença
  • ele será substituído por outras diretivas server quando server_name corresponder à solicitação
por 17.10.2017 / 17:48