从远程主机访问php文件

时间:2017-08-15 14:41:21

标签: php apache docker

我有一个运行centos 7 minimal的主机,我在docker中设置运行php的apache服务器。我的apache-config.conf文件如下所示: -

<VirtualHost xxxx.xxxx.com:80>
  ServerAdmin root@xxxx.xxxx.com   
  DocumentRoot /var/www/dl
  <Directory “/var/www/site“>
   Options Indexes FollowSymLinks
   Order allow,deny
   Allow from all
  </Directory>
 ErrorLog ${APACHE_LOG_DIR}/error_log
 CustomLog ${APACHE_LOG_DIR}/access_log combined
</VirtualHost>

如果远程centos 7机器的主机名是xxxx.xxxx.com,如何在运行firefox浏览器的windows机器上访问php内容?

感谢。

1 个答案:

答案 0 :(得分:0)

将您的apache配置中的xxxx.xxxx.com替换为localhost,然后尝试在浏览器http://localhost中打开。