Skip to content

Commit

Permalink
Allow periods in managed url paths
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsong93 authored and mhamann committed Oct 6, 2017
1 parent f29d872 commit 055b262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

before_install:
- ./tools/travis/setup.sh
- pip install hererocks
- pip install hererocks --user
- hererocks lua_install -r^ --$LUA
- export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH

Expand Down
2 changes: 1 addition & 1 deletion conf.d/managed_endpoints.conf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ server {
';
}

location ~ "^/api/([a-zA-Z0-9\-]+)/([a-zA-Z0-9\-\/\-\_\{\} ]+)(\\b)" {
location ~ "^/api/([a-zA-Z0-9\-]+)/([a-zA-Z0-9\-\/\.\_\{\} ]+)(\\b)" {
set $upstream https://172.17.0.1;
set $tenant $1;
set $tenantNamespace '';
Expand Down

0 comments on commit 055b262

Please sign in to comment.