按照教程配置虚拟机后无法访问
军哥啊, 我在vmware虚拟机上 安装了lnmp1.4 在配置虚拟主机时候 用 lnmp vhost add 一步一步按照教程做的, 配置完后在浏览器上还是无法访问啊, 直接显示无法访问此网站, 默认的那个虚拟主机可以访问, 自己添加的就不可以呢, 是不是少了那个步骤了?这是vhost里的配置
server {
listen 80;
#listen [::]:80;
server_name xds.demo.com;
index index.html index.htm index.php default.html default.htm default.php;
root/home/wwwroot/demo;
include rewrite.conf;
#error_page 404 /404.html;
# Deny access to PHP files in specific directory
#location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }
include enable-php.conf;
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /.well-known {
allow all;
}
location ~ /\.
{
deny all;
}
access_log off;
}
IP可以访问就是换成域名不能访问
用IP可以访问, 为啥换成域名就不能访问了呢. 内网的话你得改hosts将域名指向你虚拟机的ip回复 3# 的帖子
OK! 问题已解决. 谢谢军哥
页:
[1]