Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
7a59cc8b
Commit
7a59cc8b
authored
May 08, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proxy, temporary disable transparant mode.
parent
397c56aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
index.volt
src/opnsense/mvc/app/views/OPNsense/Proxy/index.volt
+2
-0
base_tabs.volt
src/opnsense/mvc/app/views/layout_partials/base_tabs.volt
+6
-2
No files found.
src/opnsense/mvc/app/views/OPNsense/Proxy/index.volt
View file @
7a59cc8b
...
...
@@ -248,6 +248,7 @@ maxheight: define max height of select box, default=170px to hold 5 items
'label':'Enable Transparent HTTP proxy',
'type':'checkbox',
'help':'Enable transparent proxy mode to forward all requests for destination port 80 to the proxy server without any additional configuration.'
,'disable':true
],
['id': 'proxy.forward.addACLforInterfaceSubnets',
'label':'Allow interface subnets',
...
...
@@ -273,6 +274,7 @@ maxheight: define max height of select box, default=170px to hold 5 items
'label':'Enable Transparent mode',
'type':'checkbox',
'help':'Enable transparent ftp proxy mode to forward all requests for destination port 21 to the proxy server without any additional configuration.'
,'disable':true
]}
],
[ 'proxy-forward-acl','Access Control List',
...
...
src/opnsense/mvc/app/views/layout_partials/base_tabs.volt
View file @
7a59cc8b
...
...
@@ -102,7 +102,9 @@ POSSIBILITY OF SUCH DAMAGE.
</td>
</tr>
{% for field in subtab[2]|default({})%}
{{ partial("layout_partials/form_input_tr",field) }}
{% if field['disable']|default(false) == false %}
{{ partial("layout_partials/form_input_tr",field) }}
{% endif %}
{% endfor %}
<tr>
<td colspan="3"><button class="btn btn-primary" id="save_{{subtab[0]}}" type="button"><b>Apply </b><i id="frm_{{subtab[0]}}_progress" class=""></i></button></td>
...
...
@@ -149,7 +151,9 @@ POSSIBILITY OF SUCH DAMAGE.
</td>
</tr>
{% for field in tab[2]|default({})%}
{{ partial("layout_partials/form_input_tr",field)}}
{% if field['disable']|default(false) == false %}
{{ partial("layout_partials/form_input_tr",field)}}
{% endif %}
{% endfor %}
<tr>
<td colspan="3"><button class="btn btn-primary" id="save_{{tab[0]}}" type="button"><b>Apply </b><i id="frm_{{tab[0]}}_progress" class=""></i></button></td>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment