- 积分
- 2
- 威望
-
- 金钱
-
- 注册时间
- 2018-9-7
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
军哥啊, 我在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;
} |
|