Skip to content

Commit

Permalink
Fix issue with escaping jenkins config
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagojsag committed Jun 15, 2023
1 parent 8ac7bda commit d618575
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ server {
location / {
proxy_pass http://localhost:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $$http_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $$host;
proxy_cache_bypass $$http_upgrade;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
EOT
Expand Down

0 comments on commit d618575

Please sign in to comment.