Laravel Forge で Let's Encrypt を使用して HTTPS をセットアップし、Laravel ミドルウェアを使用して安全でないドメインを安全なドメインにリダイレクトします。
if ( env('APP_ENV') === 'production' ) {
$request->setTrustedProxies([$request->getClientIp()]);
if ( !$request->secure() ) {
return redirect()->secure($request->getRequestUri());
}
}
return $next($request);
これが私のexample.com
(実際のドメインではない)Nginx構成です:
# FORGE CONFIG (DOT NOT REMOVE!)
include forge-conf/example.com/before/*;
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name example.com;
root /home/forge/example.com/public;
# FORGE SSL (DO NOT REMOVE!)
ssl_certificate /etc/nginx/ssl/example.com/120143/server.crt;
ssl_certificate_key /etc/nginx/ssl/example.com/120143/server.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers '[...]';
ssl_prefer_server_ciphers on;
ssl_dhparam /etc/nginx/dhparams.pem;
index index.html index.htm index.php;
charset utf-8;
# FORGE CONFIG (DOT NOT REMOVE!)
include forge-conf/example.com/server/*;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /var/log/nginx/example.com-error.log error;
error_page 404 /index.php;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
# FORGE CONFIG (DOT NOT REMOVE!)
include forge-conf/example.com/after/*;
そして、ここに私のwww.example.com
構成があります:
# FORGE CONFIG (DOT NOT REMOVE!)
include forge-conf/www.example.com/before/*;
server {
listen 80;
server_name www.example.com;
return 301 $scheme://example.com$request_uri;
}
# FORGE CONFIG (DOT NOT REMOVE!)
include forge-conf/www.example.com/after/*;
すべてが機能し、HTTP は HTTPS にリダイレクトされ、www は非 www にリダイレクトされますが、私は反対のことを行い、非 www を www にリダイレクトしたいと考えています。追加した
return 301 $scheme://www.example.com$request_uri;
ループを削除するために設定example.com
でコメントアウトしましたwww.example.com
が、機能しませんでした:
www.example.com redirected you too many times.
また、非www構成の内容をwww構成にコピーして、そこで443をリッスンしようとしましたが、それでもエンドレスにリダイレクトされました。私は何を間違っていますか?お時間をいただきありがとうございます。