nginx怎么配置IP和域名都能访问
2个回答
快又稳
2024-10-28 广告
2024-10-28 广告
在Linux环境下配置基于域名的虚拟主机,需安装Apache或Nginx等Web服务器,并编辑配置文件。以Apache为例,需创建虚拟主机配置文件,指定域名、文档根目录等,然后启用该配置文件并重启Apache服务。同样,Nginx也需在相应...
点击进入详情页
本回答由快又稳提供
展开全部
1、添加server_name为空或者localhost
server {
listen 80;
server_name localhost;
location / {
if ($host ~ localhost) {
return 403;
}
}
}
2、添加server_name为yourdns
server
{
access_log /data/logs/nginx/access.log;
listen 80;
server_name yourdns;
charset utf-8;
root /data/www;
index index.html index.htm index.php;
location / {
expires 1d;
}
}
server {
listen 80;
server_name localhost;
location / {
if ($host ~ localhost) {
return 403;
}
}
}
2、添加server_name为yourdns
server
{
access_log /data/logs/nginx/access.log;
listen 80;
server_name yourdns;
charset utf-8;
root /data/www;
index index.html index.htm index.php;
location / {
expires 1d;
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询