赞
踩
- # 配置多个服务器
-
- server
- {
- listen 80; # 监听端口号(80为默认端口号)
- # server_name localhost; # 你的域名
- server_name xxx.com; # 你的域名
- location / {
- root html; # 你的静态页面所在目录
- index index.html index.htm; # 你的静态页面名字
- }
- include enable-php.conf; # 默认的不用管
- }
-
- server {
- listen 9999;
- server_name localhost;
- location / {
- root html/newHtml;
- index index.html index.htm;
- }
- }
经过上面的配置,你就可以通过 ip:端口号/,比如xxx.xxx.xxx.xxx:端口号/访问到你部署在服务器上的html页面了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。