Skip to content
This repository has been archived by the owner on Dec 8, 2017. It is now read-only.

Commit

Permalink
Fix Tock proxy issue discussed in 18F/tock#219
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Bland committed Aug 3, 2015
1 parent 63c9ba7 commit cf42a63
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions deploy/etc/nginx/vhosts/tock.conf
Expand Up @@ -24,7 +24,9 @@ server {
port_in_redirect off;

location / {
proxy_pass https://tock-app.18f.gov;
proxy_pass https://tock-app.18f.gov/;
proxy_http_version 1.1;
proxy_set_header Host $host;
}
}

Expand All @@ -48,6 +50,8 @@ server {
port_in_redirect off;

location / {
proxy_pass https://tock-app-staging.18f.gov;
proxy_pass https://tock-app-staging.18f.gov/;
proxy_http_version 1.1;
proxy_set_header Host $host;
}
}

0 comments on commit cf42a63

Please sign in to comment.