すべてのトラフィックを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;
}
}
これは次の方法で実行できるはずです。
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
ディレクティブによって無効になります