web-dev-qa-db-ja.com

Apache2仮想ホストはhttpsに自動リダイレクトします

私はubuntu16.04を持っており、ファイル/etc/Apache2/sites-available/mysite.confのApache2mysite.devに仮想ホストをセットアップしました。

<VirtualHost *:80>
     ServerName      mysite.dev
     ServerAlias     *.mysite.dev
     DocumentRoot /var/www/mysite

     <Directory /var/www/mysite>

              Options FollowSymLinks

              AllowOverride All
     </Directory>

     ErrorLog /var/log/Apache2/error.log

     # Possible values include: debug, info, notice, warn, error, crit,
     # alert, emerg.
     LogLevel warn

     CustomLog /var/log/Apache2/access.log combined
</VirtualHost>

それは正常に機能していて、Firefoxとchromeリンク内のブラウザ http://mysite.dev/ )の両方で昨日まで自分のサイトにアクセスできましたが、その後は昨日次のアップグレードコマンドを実行しました

Sudo apt-get upgrade

再起動後、アプリケーションをhttpsにリダイレクトし始めます。つまり、 https://mysite.dev/ と表示されます。

ERR_CONNECTION_REFUSED

明らかな理由で

注意:ERR_CONNECTION_REFUSEDの修正は必要ありません。代わりに、サイトをhttpで動作させ、リダイレクトを停止します。ブラウザではhttpsに、

私は以下のバージョンを持っています

  • Ubuntu 16.04.4 LTS
  • Apache/2.4.29(Ubuntu)、ビルド2017-10-22T13:35:47

また、私はPHP 7.0 Magento 2.2を実行しており、仮想ホストドメインをmysiteから変更することを意図していないことに注意してください。開発者

更新:以下はcurl -v http://mysite.dev -o savedへの応答です

* Rebuilt URL to: http://mysite.dev/
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0*   Trying 127.0.0.1...
* Connected to mysite.dev (127.0.0.1) port 80 (#0)
> GET / HTTP/1.1
> Host: mysite.dev
> User-Agent: curl/7.47.0
> Accept: */*
> 
  0     0    0     0    0     0      0      0 --:--:--  0:00:30 --:--:--     0< HTTP/1.1 200 OK
< Date: Fri, 06 Apr 2018 09:03:36 GMT
< Server: Apache/2.4.29 (Ubuntu)
< Set-Cookie: store=english; expires=Sat, 06-Apr-2019 09:03:42 GMT; Max-Age=31536000; path=/; domain=mysite.dev; HttpOnly
< Set-Cookie: PHPSESSID=gbvs8fq6q9g67t9jd0bjl71ad4; expires=Fri, 06-Apr-2018 10:03:43 GMT; Max-Age=3600; path=/; domain=mysite.dev; HttpOnly
< Expires: Thu, 06 Apr 2017 09:03:44 GMT
< Cache-Control: max-age=0, must-revalidate, no-cache, no-store
< Pragma: no-cache
< X-Magento-Cache-Control: max-age=0, must-revalidate, no-cache, no-store
< X-Magento-Cache-Debug: MISS
< X-Magento-Tags: FPC
< X-Content-Type-Options: nosniff
< X-XSS-Protection: 1; mode=block
< X-Frame-Options: SAMEORIGIN
< Vary: Accept-Encoding
< Transfer-Encoding: chunked
< Content-Type: text/html; charset=UTF-8
< 
{ [15607 bytes data]
100 95593    0 95593    0     0   3065      0 --:--:--  0:00:31 --:--:-- 24219
* Connection #0 to Host mysite.dev left intact
1
riksof-zeeshan

この問題は、Chromeの最新バージョンで発生します。この(.dev)ドメインは2017年以降利用できません。以下のリンクを確認してください https://ma.ttias.be/chrome-force-dev-domains-https-via-preloaded-hsts/

7
Rayyan