Apache 伺服器(在 Windows 上)- 不透過 LAN 連線時無法連線

Apache 伺服器(在 Windows 上)- 不透過 LAN 連線時無法連線

嗯,這很奇怪 - 但當我使用另一個(全域)IP 位址時,我無法連接到我的 apache 伺服器。

我在連接埠 9000 進行連接,當在瀏覽器中執行此操作時(即使我輸入了外部 IP),它也能正常工作。

但是,當我從另一個地方連接時,它似乎只是“超時”?我的阿帕契配置:

#
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.4/> for detailed information.
# In particular, see 
# <URL:http://httpd.apache.org/docs/2.4/mod/directives.html>
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#

ServerRoot "xyz"

Listen 9000

LoadModule wsgi_module  modules/mod_wsgi-py34-VC10.so
LoadModule access_compat_module modules/mod_access_compat.so
LoadModule actions_module modules/mod_actions.so
LoadModule alias_module modules/mod_alias.so
LoadModule allowmethods_module modules/mod_allowmethods.so
LoadModule asis_module modules/mod_asis.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule autoindex_module modules/mod_autoindex.so
LoadModule cgi_module modules/mod_cgi.so
LoadModule dir_module modules/mod_dir.so
LoadModule env_module modules/mod_env.so
LoadModule include_module modules/mod_include.so
LoadModule isapi_module modules/mod_isapi.so
LoadModule log_config_module modules/mod_log_config.so
LoadModule mime_module modules/mod_mime.so
LoadModule negotiation_module modules/mod_negotiation.so
LoadModule setenvif_module modules/mod_setenvif.so

<IfModule unixd_module>
User daemon
Group daemon
</IfModule>

ServerAdmin [email protected]

DocumentRoot "xyz/htdocs"
<Directory "xyz/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

ErrorLog "logs/error.log"

LogLevel warn

<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common

    <IfModule logio_module>
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    CustomLog "logs/access.log" common

</IfModule>

<IfModule alias_module>
    ScriptAlias /cgi-bin/ "c:/Apache24/cgi-bin/"
</IfModule>


<IfModule cgid_module>
</IfModule>

<Directory "xyz/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
</Directory>

<IfModule mime_module>
    TypesConfig conf/mime.types
</IfModule>

<IfModule proxy_html_module>
Include conf/extra/proxy-html.conf
</IfModule>

<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

現在測試隨機端口你可以看到我嗎返回“連線被拒絕”(如預期)。然而連接埠 9000 只是“超時”。沒有顯示 apache 的登入訊息,表明我曾經嘗試連接它。 - 對於我的手機也是如此,如果我使用 WIFI/同一 LAN 透過它進行連接,我會正確顯示內網頁面。

但是,如果我透過行動網路連接,則會逾時。

現在我確實在路由器中啟用了連接埠轉送。為了進行測試,我還刪除了路由器並直接連接到我的 ISP。 - 出現同樣的問題。

我在測試期間完全停用了 Windows 防火牆以查看是否有問題 - 但它並不能解決任何問題。哦,為了完整起見,index.html:

<html><body><h1>It works!</h1></body></html>

相關內容