diff options
author | Matthew Lemon <y@yulqen.org> | 2024-06-06 10:30:43 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-06-06 10:30:43 +0100 |
commit | 9f8dcc276b746ba3d3d9365541d88f5423430a3d (patch) | |
tree | c1e6fef936382632eda67bfe13e6fb611a336e74 /nginx-conf | |
parent | e487ca089ecb3f8ca946f229f5a2058058e401dc (diff) |
Configures static for the new volume
Diffstat (limited to 'nginx-conf')
-rw-r--r-- | nginx-conf/nginx.conf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nginx-conf/nginx.conf b/nginx-conf/nginx.conf index c899096..0156c52 100644 --- a/nginx-conf/nginx.conf +++ b/nginx-conf/nginx.conf @@ -18,5 +18,10 @@ http { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } + + location /static/ { + alias /data/static/; + } + } } |