nginx配置如下
server { listen 80; server_name .hzx.com; root /Users/huzhixin/Go/src/js/public; location / { proxy_pass http://localhost:9010; } location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|pdf|txt|tar|wav|bmp|rtf|js|flv|swf|html|htm)$ { expires 30d; } }