mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-03-02 01:59:53 +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 %>
|