首先打开nginx域名配置文件存放目录:/usr/local/nginx/conf/servers ,如要绑定域名 www.itblood.com 则在此目录建一个文件: www.itblood.com.conf 然后在此文件中写规则,如:
server{
listen 80
server_name www.itblood.com #绑定域名
index index.htm index.html index.php #默认文件
root /home/www/itblood.com #网站根目录
include location.conf #调用其他规则,也可去除
}
然后重起nginx服务器,域名就绑定成功了nginx服务器重起命令:/etc/init.d/nginx restart
1,首先保证Nginx运行正常,可以用localhost/blog/index.php/任何路由,访问到自己配置的地址。
2,找到nginx的目录,找到nginx.conf。在http下新增 include vhosts/*.conf。vhosts可以替换成任意值。后续需要在nginx.conf同级目录下,新增vhosts目录,新增文件myhost.conf。新增的文件就是Nginx要读取的新的虚拟域名的相关配置
3,myhost.conf里主要配置server中的listen 监听的端口,server_name 需要配置的虚拟域名,root 虚拟域名指向的路径,示例配置如下:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)