about summary refs log tree commit diff
path: root/templates/nginx.conf.j2
diff options
context:
space:
mode:
Diffstat (limited to 'templates/nginx.conf.j2')
-rw-r--r--templates/nginx.conf.j23
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/nginx.conf.j2 b/templates/nginx.conf.j2
index 2cc027d..1b7f18d 100644
--- a/templates/nginx.conf.j2
+++ b/templates/nginx.conf.j2
@@ -65,5 +65,8 @@ server {
   location ~ (\.env|wp-login\.php|wp-admin) {
     return 301 https://www.youtube.com/watch?v=dQw4w9WgXcQ;
   }
+  {% for key in (server.headers|default([])) %}
+  add_header {{ key }} "{{ server.headers[key] }}" always;
+  {% endfor %}
 
 }