mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-09 14:34:56 +00:00
10 lines
290 B
Plaintext
10 lines
290 B
Plaintext
|
Acquire::http::Proxy "http://<%= @proxy %>:<%= @port %>";
|
||
|
<% if @proxy_ssl %>
|
||
|
Acquire::https::Proxy "http://<%= @proxy %>:<%= @port %>";
|
||
|
<% else %>
|
||
|
Acquire::https::Proxy "DIRECT";
|
||
|
<% end %>
|
||
|
<% @bypass.each do |bypass, type| %>
|
||
|
Acquire::<%= type %>::Proxy::<%= bypass %> "DIRECT";
|
||
|
<% end %>
|