标签:
nginx编译参数
./configure --user=nginx --group=nginx --prefix=/application/nginx-1.6.3 --with-http_stub_status_module --with-http_ssl_module
rewrite
server { listen 80; server_name lanny.com; root html/www; index index.html index.htm; rewrite ^(.*) http://www.lanny.com/$1 permanent; }
标签:
原文地址:http://www.cnblogs.com/iiiiher/p/5693999.html