VPS侦探论坛

 找回密码
 注册
查看: 10132|回复: 2

默认绑定的域名怎么修改?有人知道吗?

[复制链接]
发表于 2010-5-3 12:19:34 | 显示全部楼层 |阅读模式

装太多次、麻木了,最后一次安装的时候吧原本做网站的域名填到默认域名上去了

现在新开虚拟主机后默认域名还是访问根目录而不是新开的目录上的-.-''


请知道的人说说怎么修改默认的那个域名,谢谢。
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
发表于 2010-5-3 13:27:48 | 显示全部楼层

回复 1# 的帖子



修改/usr/local/nginx/conf/nginx.conf 即可。
Linux下Nginx+MySQL+PHP自动安装工具:https://lnmp.org
发表于 2010-5-4 19:15:41 | 显示全部楼层

原帖由 licess 于 2010-5-3 13:27 发表
修改/usr/local/nginx/conf/nginx.conf 即可。

server
{
  listen       80;
  server_name www.yousite.com;
  index index.html index.htm index.php;
  root  /home/wwwroot;
  location ~ .*\.(php|php5)?$
   {
    fastcgi_pass  unix:/tmp/php-cgi.sock;
    fastcgi_index index.php;
    include fcgi.conf;
   }
  location /status {
   stub_status on;
   access_log /dev/null;
                        error_log /dev/null;
  }
  location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
   {
    expires      30d;
   }
  location ~ .*\.(js|css)?$
   {
    expires      12h;
   }
  log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
  access_log  /home/wwwroot/logs/access.log  access;
}
include vhost/*.conf;
}
把上面的www.yousite.com修改成你想要的域名
美国VPS推荐: 遨游主机LinodeLOCVPS主机云搬瓦工80VPSVultr美国VPS主机中国VPS推荐: 阿里云腾讯云。LNMP付费服务(代装/问题排查)QQ 503228080
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|VPS侦探 ( 鲁ICP备16040043号-1 )

GMT+8, 2024-9-8 09:08 , Processed in 0.025657 second(s), 16 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表