nginx可以通过通配符方便的配置泛域名,如下是outofmemory.cn的泛域名配置 server { #listen 80; ## listen for ipv4; this line is default and implied #listen [::]:80 default ipv6only=on; ## listen for ipv6 listen 80; server_name *.outofmemory.cn; rewrite ^(/.*) http://outofmemory.cn$1 permanent; }注意:要使用Nginx下的泛域名支持,必须在编译 Nginx的时候加上–with-http_sub_module。 配置完毕之后记得用nginx -t先验证一下配置是否有问题,然后通过nginx -s reload使设置生效即可。 (责任编辑:IT) |