summaryrefslogtreecommitdiffstats
path: root/ansible/templates/nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/templates/nginx.conf')
-rw-r--r--ansible/templates/nginx.conf6
1 files changed, 5 insertions, 1 deletions
diff --git a/ansible/templates/nginx.conf b/ansible/templates/nginx.conf
index b96bbce7..68fa64fc 100644
--- a/ansible/templates/nginx.conf
+++ b/ansible/templates/nginx.conf
@@ -75,10 +75,14 @@ server {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+
+ if ($request_uri ~ \.(?:ico|gif|jpe?g|png|webp|bmp|mp4)$) {
+ add_header Cache-Control "public, max-age=31536000, immutable";
+ }
}
location /iframely/ {
- proxy_pass http://0.0.0.0:8538/;
+ proxy_pass http://0.0.0.0:8061/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;