2019-09-30 21:07:59 +05:30
|
|
|
= form_for @application_setting, url: network_admin_application_settings_path(anchor: 'js-outbound-settings'), html: { class: 'fieldset-form' } do |f|
|
2018-05-09 12:01:36 +05:30
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
|
|
|
.form-group
|
2018-11-08 19:23:39 +05:30
|
|
|
.form-check
|
|
|
|
= f.check_box :allow_local_requests_from_hooks_and_services, class: 'form-check-input'
|
|
|
|
= f.label :allow_local_requests_from_hooks_and_services, class: 'form-check-label' do
|
|
|
|
Allow requests to the local network from hooks and services
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2019-06-05 12:25:43 +05:30
|
|
|
.form-group
|
|
|
|
.form-check
|
|
|
|
= f.check_box :dns_rebinding_protection_enabled, class: 'form-check-input'
|
|
|
|
= f.label :dns_rebinding_protection_enabled, class: 'form-check-label' do
|
|
|
|
= _('Enforce DNS rebinding attack protection')
|
|
|
|
%span.form-text.text-muted
|
|
|
|
= _('Resolves IP addresses once and uses them to submit requests')
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
= f.submit 'Save changes', class: "btn btn-success"
|