web-dev-qa-db-ja.com

Nginxはサブドメインに対してHTTPをHTTPSに自動的にリダイレクトします

すべてのトラフィックをhttpからhttpsに自動的にリダイレクトしようとしています。すべてのドメインとサブドメインに301リダイレクトを行うにはどうすればよいですか?

これはNGNIX構成ファイルです

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;
    }
}
1
Harsha M V

これは次の方法で実行できるはずです。

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

その点に注意してください:

  • listen [::]:80 ipv6only=offはipv4とipv6の両方にバインドし、
  • $Host変数はリクエストから取得され、$server_nameはリクエストを処理するserverから取得されます、大きな違い
  • server_nameがリクエストに一致すると、他のserverディレクティブによって無効になります
5