亚洲无码一区在线播放 Nginx 虚拟主机配置 |
发布时间: 2014/8/6 10:15:58 |
Nginx 是一个虚拟主机配置高性能Web和反向代理服务器必背的服务,它具有很多非常优越的特性:在高连接并发的情况下,Nginx是Apache服务器不错的替代品,能够使网站虚拟空间同时支持高达50,000 个并发连接数的响应。 //对域名aaa.sdyiwande.com server { listen 80; //监听端口号 server_name aaa.csdyiwande.com; //主机名称 access_log logs/sdyiwande.com_access.log combined; location / { index index.php index.html index.htm; //默认首页文件 root /www/aaa.sdyiwande.com; //网站目录 } } //对域名bbb.sdyiwande.com server { listen 80; //监听端口号 server_name bbb.sdyiwande.com; //主机名称 access_log logs/bbb.sdyiwande.com_access.log combined; location / { index index.php index.html index.htm; //默认首页文件 root /www/bbb.sdyiwande.com; //网站目录 } } //对域名www.sdyiwande.com,sdyiwande.com和除了aaa.sdyiwande.com,bbb.sdyiwande.com外的所有*.sdyiwande.com server { listen 80; //监听端口号 server_name www.sdyiwande.com sdyiwande.com *.sdyiwande.com; //主机名称 access_log logs/www.sdyiwande.com_access.log combined; location / { index index.php index.html index.htm; //默认首页文件 root /www/www.sdyiwande.com; //网站目录 } } 亿恩科技PHP虚拟主机支持PHP语言、高速稳定的郑州BGP多线机房、千M硬件防火墙,独享Nginx服务,支持在线重启Apache,提供日志分析、流量分析以及查看链接信息等功能,专为php语言开发的虚拟主机。 本文出自:亿恩科技【www.sdyiwande.com】 |