Skip to content
Snippets Groups Projects
Commit 36872916 authored by Martin Weise's avatar Martin Weise
Browse files

Need assets path

parent d6551a20
No related branches found
No related tags found
2 merge requests!400Need assets path,!392Need assets path
This commit is part of merge request !392. Comments created here will be created in the context of that merge request.
No preview for this file type
No preview for this file type
......@@ -20,6 +20,16 @@ data:
listen 8080 default_server;
server_name _;
location /assets/ {
root /etc/nginx/assets;
expires max;
access_log off;
autoindex on;
autoindex_exact_size off;
autoindex_format html;
autoindex_localtime on;
}
location /dashboard {
rewrite ^/dashboard/(.*) /$1 break;
proxy_set_header Host $host;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment