使用WampServer拒绝网络上另一台计算机上的端口443(https://)的访问

时间:2018-08-19 11:14:22

标签: apache wampserver

使用 Apache2.4.33 ,我可以允许访问端口80 上网络上的另一台计算机,但是我似乎无法解决该怎么做。与端口443 相同以实现安全连接。

我的httpd-vhosts.conf文件:(如果有)

    # Virtual Hosts
    #
    <VirtualHost *:80>
      ServerName localhost
      ServerAlias localhost
      DocumentRoot "${INSTALL_DIR}/www"
      <Directory "${INSTALL_DIR}/www/">
        Options +Indexes +Includes +FollowSymLinks +MultiViews
        AllowOverride All
        Allow from all
        Require all granted
      </Directory>
    </VirtualHost>

端口443 在托管它的计算机上可以完美运行。

1 个答案:

答案 0 :(得分:0)

最终由我自己解决问题:

添加以下代码行:

<Directory  "c:/wamp64/www/">
   #Options FollowSymLinks
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Require all granted
</Directory>
<Directory  "c:/wamp64/www/yoursite/">
    #Options FollowSymLinks
    Options Indexes FollowSymLinks Includes ExecCGI
    AllowOverride All
    Require all granted
</Directory>

在“ httpd-ssl.conf”中添加了#的位置,该位置存储在“ \ wamp64 \ bin \ apache \ apache2.x.xx \ conf \ extra \”中:

#SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
<FilesMatch "\.(cgi|shtml|phtml|php)$">
    SSLOptions +StdEnvVars
</FilesMatch>
<Directory "c:/Apache24/cgi-bin">
    SSLOptions +StdEnvVars
</Directory>
# <--This Hashtag!!!

这修复了端口443 被拒绝的问题。