diff --git a/roles/rebuilderd/templates/nginx.d.conf.j2 b/roles/rebuilderd/templates/nginx.d.conf.j2
index 78156a96488357532fb5a3bc211cad53351b3978..7c466a8a0997b0274d20dfe6f55bac42c55728ef 100644
--- a/roles/rebuilderd/templates/nginx.d.conf.j2
+++ b/roles/rebuilderd/templates/nginx.d.conf.j2
@@ -42,19 +42,19 @@ server {
     root {{ rebuilder_website_loc }};
 
     location ~* (css|js|svg)$ {
-           expires 30d;
-           add_header Pragma public;
-           add_header Cache-Control "public, must-revalidate, proxy-revalidate";
+        expires 30d;
+        add_header Pragma public;
+        add_header Cache-Control "public, must-revalidate, proxy-revalidate";
     }
 
     location /api/ {
-            proxy_set_header    X-Real-IP          $remote_addr;
-	    proxy_pass http://127.0.0.1:8484;
+        proxy_set_header    X-Real-IP          $remote_addr;
+        proxy_pass http://127.0.0.1:8484;
     }
 
     location = /api/v0/build/report {
-	    client_max_body_size 25M;
-            proxy_set_header    X-Real-IP          $remote_addr;
-	    proxy_pass http://127.0.0.1:8484;
+        client_max_body_size 25M;
+        proxy_set_header    X-Real-IP          $remote_addr;
+        proxy_pass http://127.0.0.1:8484;
     }
 }