Ssl

使用本地 IP 地址訪問本地網路上伺服器的 Web 伺服器

  • December 1, 2021

我有一個帶有 Apache 的伺服器作為對 Node Web 服務的請求的代理。我目前能夠使用我的域名使用本地網路之外的瀏覽器進行連接:https://mydomain.ca. 我相信我曾經能夠使用伺服器的本地 IP 地址在本地網路中使用瀏覽器進行連接:https://10.0.0.13. 但是,當我現在嘗試時,我收到 500 錯誤。我正在尋求幫助以使其再次正常工作。如果可以的話,我也可以不在本地網路上使用 SSL 並訪問伺服器http://10.0.0.13

我收到以下帶有 500 錯誤的文本:

The proxy server could not handle the request 
Reason: Error during SSL Handshake with remote server

我查看了我的 Apache 錯誤日誌 (/var/log/apache2/error.log) 以獲取更多線索,但我沒有找到我認為超級有用的文本:

[Sun Nov 28 23:11:42.609115 2021] [proxy_http:error] [pid 28560:tid 140085584455424] [client 10.0.0.220:26070] AH01097: pass request body failed to 127.0.0.1:4201 (loca lhost) from 10.0.0.220 () 
[Sun Nov 28 23:11:42.769782 2021] [proxy:error] [pid 28560:tid 140085567670016] (20014)Internal error (specific information not available): [client
10.0.0.220:26071] AH 01084: pass request body failed to 127.0.0.1:4201 (localhost) 
[Sun Nov 28 23:11:42.769805 2021] [proxy:error] [pid 28560:tid 140085567670016] [client 10.0.0.220:26071] AH00898: Error during SSL Handshake with remote server returne d by /

這是我的 conf 文件的樣子:

mydomain.ca-le-ssl.conf

<IfModule mod_ssl.c>
<VirtualHost *:443>
   ServerAdmin webmaster@localhost
   ServerName mydomain.ca
   ServerAlias www.mydomain.ca
   ProxyPreserveHost on
   SSLProxyEngine on
   ProxyPass / https://localhost:4201/
   ProxyPassReverse / https://localhost:4201/
   ErrorLog ${APACHE_LOG_DIR}/error.log
   CustomLog ${APACHE_LOG_DIR}/access.log combined

ServerAlias mydomain.ca
SSLCertificateFile /etc/letsencrypt/live/mydomain.ca/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/mydomain.ca/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>

mydomain.ca.conf

<VirtualHost *:80>
   ServerAdmin webmaster@localhost
   ServerName mydomain.ca
   ServerAlias www.mydomain.ca
   DocumentRoot /var/www/mydomain.ca
   ProxyPreserveHost on
   ProxyPass / http://localhost:4201/
   ProxyPassReverse / http://localhost:4201/
   ErrorLog ${APACHE_LOG_DIR}/error.log
   CustomLog ${APACHE_LOG_DIR}/access.log combined 
</VirtualHost>

編輯 - 以下是有關 Node Web 服務的一些資訊: Node Web 服務正在偵聽單個埠,並且僅偵聽 https 連接。

上面的一些評論讓我以正確的方式思考這個問題。我採用的方法是

  • 在我的 Node Web 服務中的不同埠上執行單獨的 http 和 https 伺服器,
  • 更新 mydomain.ca.conf 和 mydomain.ca-le-ssl.conf 中的埠號以對應正確的埠號,並且
  • 更新 mydomain.ca.conf 以僅響應來自 localhost 或 LAN 的請求,如下所示。
<VirtualHost *:80>
  # We should only access the web server via http if on localhost
  # or within LAN.
  <Location />
    Require local
    Require ip 10.0.0.0/24
  </Location>
  ...

有了這一切,我現在可以http://10.0.0.13從本地網路內部和本地網路https://mydomain.ca外部訪問。

您已將 HTTP 和 HTTPS 配置為連接到後端伺服器上的同一埠。

您的後端伺服器不太可能在同一埠上同時支持這兩種協議。

要麼在兩個 VirtualHosts 中使用 HTTP,要麼使用正確的 HTTPS 埠(如果您的後端伺服器同時支持兩者)。

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