Ssl

Apache2 虛擬主機自動重定向到 https

  • April 6, 2018

我有 ubuntu 16.04,我在文件中的 apache2 mysite.dev 中設置了虛擬主機/etc/apache2/sites-available/mysite.conf

<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>

它工作正常,直到昨天我都能夠在連結http://mysite.dev/中的 Firefox 和 chrome 瀏覽器中訪問我的網站,但是我昨天執行了以下升級命令

sudo apt-get upgrade

重新啟動後,它開始將我的應用程序重定向到httpshttps://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.dev 更改虛擬主機域

**更新:**以下是對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/

引用自:https://serverfault.com/questions/906339