Skip to content

Commit

Permalink
[#32] update the reverse proxy to 0.9.3 too
Browse files Browse the repository at this point in the history
  • Loading branch information
trel committed Oct 26, 2022
1 parent c7ac965 commit c60edb5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions irods_client_rest_cpp/irods_client_rest_cpp_reverse_proxy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,63 +5,63 @@ server {
add_header 'Access-Control-Allow-Headers' '*' always;
add_header 'Access-Control-Allow-Methods' 'AUTHORIZATION,ACCEPT,GET,POST,OPTIONS,PUT,DELETE' always;

location /irods-rest/0.9.2/access {
location /irods-rest/0.9.3/access {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8080;
}

location /irods-rest/0.9.2/admin {
location /irods-rest/0.9.3/admin {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8087;
}

location /irods-rest/0.9.2/auth {
location /irods-rest/0.9.3/auth {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8081;
}

location /irods-rest/0.9.2/get_configuration {
location /irods-rest/0.9.3/get_configuration {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8088;
}

location /irods-rest/0.9.2/put_configuration {
location /irods-rest/0.9.3/put_configuration {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8089;
}

location /irods-rest/0.9.2/list {
location /irods-rest/0.9.3/list {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8082;
}

location /irods-rest/0.9.2/query {
location /irods-rest/0.9.3/query {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8083;
}

location /irods-rest/0.9.2/stream {
location /irods-rest/0.9.3/stream {
if ($request_method = 'OPTIONS') {
return 204;
}
Expand All @@ -75,23 +75,23 @@ server {
}
}

location /irods-rest/0.9.2/zonereport {
location /irods-rest/0.9.3/zonereport {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8086;
}

location /irods-rest/0.9.2/logicalpath {
location /irods-rest/0.9.3/logicalpath {
if ($request_method = 'OPTIONS') {
return 204;
}

proxy_pass http://irods-client-rest-cpp:8090;
}

location /irods-rest/0.9.2/metadata {
location /irods-rest/0.9.3/metadata {
if ($request_method = 'OPTIONS') {
return 204;
}
Expand Down

0 comments on commit c60edb5

Please sign in to comment.