主机头

标题: nginx.cof设置2个server [打印本页]

作者: admin    时间: 2013-5-11 14:32
标题: nginx.cof设置2个server
有两个server
  1. server
  2. {
  3. server_name zhujitou.com;
  4. rewrite ^(.*) http://www.zhujitou.com$1 permanent;
  5. }
复制代码
用的amh的面板

想做301跳转
  1. server
  2. {
  3.         listen       80;
  4.         server_name www.xxx.net; #server_name end
  5.         index index.html index.htm index.php; #index end

  6.         set $domain '';
  7.         if ( $host ~* "(.+)\.(.+)\.(.+)" )
  8.         {
  9.                 #set $domain "/$1"; #host subdirectory
  10.         }
  11.         if ( $domain = '/www' )
  12.         {
  13.                 set $domain '';
  14.         }

  15.         root  /home/wwwroot/xxx.net/web$domain;
  16.         include rewrite/amh.conf; #rewrite end

  17.         #error_page
  18.                 error_page 400 /ErrorPages/400.html;
  19.                 error_page 403 /ErrorPages/403.html;
  20.                 error_page 404 /ErrorPages/404.html;
  21.                 error_page 502 /ErrorPages/502.html;
  22.         location ~ /ErrorPages/(400|401|403|404|405|502|503)\.html$
  23.         {
  24.                 root /home/wwwroot/xxx.net/web;
  25.         }


  26.         location ~ .*\.php$
  27.         {
  28.                 fastcgi_pass  unix:/tmp/php-cgi-xxx.net.sock;
  29.                 fastcgi_index index.php;
  30.                 include fcgi-host.conf;
  31.                 fastcgi_param SCRIPT_FILENAME  /web$domain$fastcgi_script_name;
  32.         }

  33.         location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp3|wma)$
  34.         {
  35.                 expires      30d;
  36.         }

  37.         location ~ .*\.(js|css)$
  38.         {
  39.                 expires      12h;
  40.         }

  41.         access_log off; #access_log end
  42.         error_log /dev/null; #error_log end
  43.         
  44. }
  45. server
  46. {
  47. server_name xxx.net;
  48. rewrite ^(.*) http://www.xxx.net$1 permanent;
  49. }
复制代码
配置之后用nginx -t 测试一下配置文件,没有问题,就可以。






欢迎光临 主机头 (http://zhujitou.com/) Powered by Discuz! X2.5