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