server { server_name svn.example.com; ssl_certificate /etc/ssl/certs/example_bundle.crt; ssl_certificate_key /etc/ssl/certs/star_example_com.key; listen 443; gzip off; ssl on; client_max_body_size 500m;ssl_session_timeout 30m; location / {  proxy_set_header X-Real-IP     $remote_addr;  proxy_set_header X-Forwarded-For  $proxy_add_x_forwarded_for;  proxy_set_header X-Forwarded-Proto $scheme;  proxy_set_header Host $http_host;  proxy_pass http://scm_manager/;  proxy_intercept_errors on;proxy_connect_timeout    1900;proxy_send_timeout      1900;proxy_read_timeout      1900;send_timeout         1900;proxy_buffering   off;proxy_buffer_size  128k;proxy_buffers 100  128k; }}
svn copy --username bob.smith https://svn.example.com/scm/svn/Customer-thirdParty-custom/CustomerDealerAdminModule/trunk https://svn.example.com/scm/svn/Customer-thirdParty-custom/CustomerDealerAdminModule/tags/Customer-1172 -m "Completed: good commit message."
svn: E175002: Adding directory failed: COPY on /scm/svn/Customer-thirdParty-custom/!svn/bc/18/CustomerDealerAdminModule/trunk (400 Bad Request)
set $fixed_destination $http_destination;
if ( $http_destination ~* ^https(.*)$ ) {
set $fixed_destination http$1;
}svn: E175002: COPY request on '/scm/svn/Customer-thirdParty-custom/!svn/bc/18/CustomerDealerAdminModule/trunk' failed: 501 Method COPY is not defined in RFC 2068 and is not supported by the Servlet API
set $fixed_destination $http_destination;
if ( $http_destination ~* ^https(.*)$ ) {
set $fixed_destination http$1;
}
Only borked things up.. Everything is working using the normal configuration.
thx!