Skip to content

Commit

Permalink
adding string interpolation syntax in NGINX
Browse files Browse the repository at this point in the history
  • Loading branch information
shogunpurple committed Mar 31, 2022
1 parent cdd1409 commit 487e0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hosting/nginx.prod.conf.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ http {
add_header X-Frame-Options SAMEORIGIN always;
add_header X-Content-Type-Options nosniff always;
add_header X-XSS-Protection "1; mode=block" always;
add_header Content-Security-Policy $csp_default; $csp_script; $csp_style; $csp_object; $csp_base_uri; $csp_connect; $csp_font; $csp_frame; $csp_img; $csp_manifest; $csp_media; $csp_worker;" always;
add_header Content-Security-Policy ${csp_default}; ${csp_script}; ${csp_style}; ${csp_object}; ${csp_base_uri}; ${csp_connect}; ${csp_font}; ${csp_frame}; ${csp_img}; ${csp_manifest}; ${csp_media}; ${csp_worker};" always;

# upstreams
set $apps {{ apps }};
Expand Down

0 comments on commit 487e0c3

Please sign in to comment.