NGINXを使用してHTTPS要求をHTTPにリダイレクトしようとしています。NGINX HTTPSをHTTPにリダイレクト
server {
listen 443;
server_name exapmle.com;
rewrite ^(.*) http://example.com$1 permanent;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/laravel/public;
index index.php index.html index.htm index.nginx-debian.html;
server_name example.com www.example.com;
if ($https = "on") {
return 301 http://www.example.com$request_uri;
}
location/{
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
だから私が間違ってやっている任意のアイデア:私は私のVPS上
の/ etc/nginxの/サイト利用可能/デフォルト
を編集した方法
これ?
を:あなたは、これは代わりに試してみてください、あなたが443
に聞いていることを示すものを持っていないのですか? – Difster
Google広告を掲載しようとしています。そのため、次の理由で広告を受け付けません:https://support.google.com/adwordspolicy/answer/6368661?hl=ja&authuser=0#673 –
@Difster in my ads:宛先が機能していない –