summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorfett0 <fernando.gmaidana@gmail.com>2023-12-15 18:39:29 +0000
committerChristian Breunig <christian@breunig.cc>2023-12-16 08:27:49 +0100
commit24f449cc099703df95646c719e9d3f308ed1a3f0 (patch)
treea9c187649191e787b9d3faaa1249333438256f3c /data
parent357123273c808ddec77b097d47231e3301ee5731 (diff)
downloadvyos-1x-24f449cc099703df95646c719e9d3f308ed1a3f0.tar.gz
vyos-1x-24f449cc099703df95646c719e9d3f308ed1a3f0.zip
ocserv: T5796: add CLI knob "http-security-headers"
OCserv manual recommended HTTP headers tobe included in the configuration. (cherry picked from commit ad65d37ddf92ec8416c84707d7d41e63346b550c)
Diffstat (limited to 'data')
-rw-r--r--data/templates/ocserv/ocserv_config.j25
1 files changed, 3 insertions, 2 deletions
diff --git a/data/templates/ocserv/ocserv_config.j2 b/data/templates/ocserv/ocserv_config.j2
index 80ba357bc..713ca7fd4 100644
--- a/data/templates/ocserv/ocserv_config.j2
+++ b/data/templates/ocserv/ocserv_config.j2
@@ -121,12 +121,12 @@ select-group = {{ grp }}
{% endfor %}
{% endif %}
-
+{% if http_security_headers is vyos_defined %}
# HTTP security headers
included-http-headers = Strict-Transport-Security: max-age=31536000 ; includeSubDomains
included-http-headers = X-Frame-Options: deny
included-http-headers = X-Content-Type-Options: nosniff
-included-http-headers = Content-Security-Policy: default-src ´none´
+included-http-headers = Content-Security-Policy: default-src 'none'
included-http-headers = X-Permitted-Cross-Domain-Policies: none
included-http-headers = Referrer-Policy: no-referrer
included-http-headers = Clear-Site-Data: "cache","cookies","storage"
@@ -136,3 +136,4 @@ included-http-headers = Cross-Origin-Resource-Policy: same-origin
included-http-headers = X-XSS-Protection: 0
included-http-headers = Pragma: no-cache
included-http-headers = Cache-control: no-store, no-cache
+{% endif %}