kenlog / Nebula

Modern theme for kanboard + syntax highlighting for Markdown code :dash:
https://kanboard.org
MIT License
85 stars 8 forks source link

Default logo does not show up with Docker #12

Closed ptoulouse closed 3 years ago

ptoulouse commented 4 years ago

Related to issue #9 . Same issue with the official Kanboard Docker container. It is based on Nginx. Don't know how to fix the issue, Every other theme I tried in the Extension section is working correctly.

Lennart97 commented 4 years ago

Same problem over here on docker as well.

Failed to load resource: the server responded with a status of 404 ()
kenlog commented 3 years ago

Hi @ptoulouse @Lennart97 :partying_face: Happy New Year! Try adding the following the configuration file is named nginx.conf and placed in the directory /usr/local/nginx/conf, /etc/nginx, or /usr/local/etc/nginx

location ~ \.(gif|jpg|png)$ {
        root /data/files/Nebula/Assets/images;
}

or

location /images/ {
        root /data/files/Nebula/Assets;
}

and let me know if it resolves.

P.S. I haven't had a chance to test but this should be the way