NginxでRequest Entity Too Largeと怒られた。

SVNファイルインポート中にエラー。WebサーバはNginx

svn: Server sent unexpected return value (413 Request Entity Too Large) in response to PUT request for
・・・

サイズが大きすぎるのでダメと怒られる。

下記設定を追加して対応。

 location /svn {
・・・
    client_max_body_size       100m;
・・・
}

参考

http://wiki.nginx.org/NginxHttpCoreModuleJa