我有一个相当长的 Content-Security-Policy 标头值,我必须将它放在几个location
块中。
是否可以在配置中声明一个具有我的长 CSP 字符串值的变量,然后在整个块中使用该变量代替字符串location
?
像这样的东西:
location / {
...
set_header Content-Security-Policy $csp_string;
...
}
...
location /somethingelse {
...
set_header Content-Security-Policy $csp_string;
...
}