Skip to content
Snippets Groups Projects
Commit 16bb99d4 authored by Christopher Zentgraf's avatar Christopher Zentgraf
Browse files

Fix 400 error on percent encoded URLs

parent 59956b82
No related branches found
No related tags found
1 merge request!54Fix Apache 400 error on percent encoded URLs
Loading
Loading
@@ -34,7 +34,7 @@
RewriteEngine on
 
#Don't escape encoded characters in api requests
RewriteCond %{REQUEST_URI} ^/api/v3/.* [OR]
RewriteCond %{REQUEST_URI} ^/api/v3/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
 
#Forward all requests to gitlab-workhorse except existing files like error documents
Loading
Loading
Loading
Loading
@@ -35,7 +35,7 @@
RewriteEngine on
 
#Don't escape encoded characters in api requests
RewriteCond %{REQUEST_URI} ^/api/v3/.* [OR]
RewriteCond %{REQUEST_URI} ^/api/v3/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
 
#Forward all requests to gitlab-workhorse except existing files like error documents
Loading
Loading
Loading
Loading
@@ -35,7 +35,7 @@
RewriteEngine on
 
#Don't escape encoded characters in api requests
RewriteCond %{REQUEST_URI} ^/api/v3/.* [OR]
RewriteCond %{REQUEST_URI} ^/api/v3/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
 
#Forward all requests to gitlab-workhorse except existing files like error documents
Loading
Loading
Loading
Loading
@@ -36,7 +36,7 @@
RewriteEngine on
 
#Don't escape encoded characters in api requests
RewriteCond %{REQUEST_URI} ^/api/v3/.* [OR]
RewriteCond %{REQUEST_URI} ^/api/v3/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
 
#Forward all requests to gitlab-workhorse except existing files like error documents
Loading
Loading
Loading
Loading
@@ -61,7 +61,7 @@
RewriteEngine on
 
#Don't escape encoded characters in api requests
RewriteCond %{REQUEST_URI} ^/api/v3/.* [OR]
RewriteCond %{REQUEST_URI} ^/api/v3/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
 
#Forward all requests to gitlab-workhorse except existing files like error documents
Loading
Loading
Loading
Loading
@@ -62,7 +62,7 @@
RewriteEngine on
 
#Don't escape encoded characters in api requests
RewriteCond %{REQUEST_URI} ^/api/v3/.* [OR]
RewriteCond %{REQUEST_URI} ^/api/v3/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
 
#Forward all requests to gitlab-workhorse except existing files like error documents
Loading
Loading
Loading
Loading
@@ -60,7 +60,7 @@
RewriteEngine on
 
#Don't escape encoded characters in api requests
RewriteCond %{REQUEST_URI} ^/api/v3/.* [OR]
RewriteCond %{REQUEST_URI} ^/api/v3/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
 
#Forward all requests to gitlab-workhorse except existing files like error documents
Loading
Loading
Loading
Loading
@@ -61,7 +61,7 @@
RewriteEngine on
 
#Don't escape encoded characters in api requests
RewriteCond %{REQUEST_URI} ^/api/v3/.* [OR]
RewriteCond %{REQUEST_URI} ^/api/v3/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
 
#Forward all requests to gitlab-workhorse except existing files like error documents
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment